add lable; smal fix

This commit is contained in:
6543 2018-05-20 22:55:54 +02:00
parent 242421fbab
commit 6ce556ef84
1 changed files with 4 additions and 1 deletions

View File

@ -28,13 +28,16 @@ function check_config() {

#Project
[ -f "<LIBDIR>/proj/$distro" ] || {
echo "No Project \"$distrp\" is not supported" | tee -a "$log_file"
echo "No Project \"$distro\" is not supported" | tee -a "$log_file"
return 3
}

#live-system files
if [ -f "$iso_source" ]; then
if [ -n "$iso_destination" ] && [ -d "${iso_destination%/*}" ]; then
#Lable
[ -z "$iso_lable" ] && iso_lable="$distro"

# iso_source -> iso_destination
# iso_source -> squashfs [optinal]
else