diff options
-rwxr-xr-x | functions/defaults.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 3db6155..598b7c7 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -865,7 +865,7 @@ Check_defaults () Echo_warning "You have specified a too long string for iso publisher, the maximum lenght is 128 characters." fi - if [ "$(echo ${LH_ISO_VOLUME} | wc -c)" -ge 33 ] + if [ "$(eval "echo ${LH_ISO_VOLUME}" | wc -c)" -ge 33 ] then Echo_warning "You have specified a too long string for iso volume, the maximum lenght is 32 characters." fi |