[SCM] Debian Live build scripts branch, master, updated. 1.0.3-2-17-g4156d9f

Daniel Baumann daniel at debian.org
Fri Feb 20 14:10:02 UTC 2009


The following commit has been merged in the master branch:
commit 4156d9f58a84582842f0c9df2962526fb5167a84
Author: Daniel Baumann <daniel at debian.org>
Date:   Fri Feb 20 15:07:09 2009 +0100

    Emitting a warning rather than an error when iso strings are too long.

diff --git a/functions/defaults.sh b/functions/defaults.sh
index 3b7b02d..3db6155 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -852,21 +852,21 @@ Check_defaults ()
 
 	if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -ge 129 ]
 	then
-		Echo_error "You have specified a too long string for iso application, the maximum lenght is 128 characters."
+		Echo_warning "You have specified a too long string for iso application, the maximum lenght is 128 characters."
 	fi
 
 	if [ "$(echo ${LH_ISO_PREPARER} | wc -c)" -ge  129 ]
 	then
-		 Echo_error "You have specified a too long string for iso preparer, the maximum lenght is 128 characters."
+		Echo_warning "You have specified a too long string for iso preparer, the maximum lenght is 128 characters."
 	fi
 
 	if [ "$(echo ${LH_ISO_PUBLISHER} | wc -c)" -ge 129 ]
 	then
-		Echo_error "You have specified a too long string for iso publisher, the maximum lenght is 128 characters."
+		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 ]
 	then
-		Echo_error "You have specified a too long string for iso volume, the maximum lenght is 32 characters."
+		Echo_warning "You have specified a too long string for iso volume, the maximum lenght is 32 characters."
 	fi
 }

-- 
Debian Live build scripts



More information about the debian-live-changes mailing list