diff options
author | Chris Lamb <lamby@debian.org> | 2009-02-21 23:14:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:42 +0100 |
commit | c081caf4d79eca3fc86fc7cfd8a2f492a66b1438 (patch) | |
tree | 9bac96077b0a3d48680bff0213dbdef9d699271f /functions | |
parent | 0e2d53d5d994cdda957dff4acf6cb14222b63f2f (diff) | |
download | vyos-live-build-c081caf4d79eca3fc86fc7cfd8a2f492a66b1438.tar.gz vyos-live-build-c081caf4d79eca3fc86fc7cfd8a2f492a66b1438.zip |
Correcting spelling of s/lenght/length/ in warning messages.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/defaults.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 598b7c735..5244d2e44 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_warning "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 length is 128 characters." fi if [ "$(echo ${LH_ISO_PREPARER} | wc -c)" -ge 129 ] then - Echo_warning "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 length is 128 characters." fi if [ "$(echo ${LH_ISO_PUBLISHER} | wc -c)" -ge 129 ] then - Echo_warning "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 length is 128 characters." fi 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." + Echo_warning "You have specified a too long string for iso volume, the maximum length is 32 characters." fi } |