diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-15 23:08:43 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:40 +0100 |
commit | 026a683b771ef549337777a28b636555dabd260b (patch) | |
tree | 54e564b1feb331d0e69d6b7ff7c48f175a23ac8f /functions/help.sh | |
parent | 1a8e86926512078b8bee53264102ce332556b4cd (diff) | |
download | vyos-live-build-026a683b771ef549337777a28b636555dabd260b.tar.gz vyos-live-build-026a683b771ef549337777a28b636555dabd260b.zip |
Don't use interpolation to print usage and help as it breaks newlines and tabs.
Diffstat (limited to 'functions/help.sh')
-rwxr-xr-x | functions/help.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/help.sh b/functions/help.sh index 5bad826fd..c0d3fe6eb 100755 --- a/functions/help.sh +++ b/functions/help.sh @@ -18,7 +18,7 @@ Help () if [ -n "${USAGE}" ] then - Echo "%s" "${USAGE}" + Echo "${USAGE}" echo fi Echo " %s [-h|--help]" "${PROGRAM}" @@ -28,7 +28,7 @@ Help () if [ -n "${HELP}" ] then - Echo "%s" "${HELP}" + Echo "${HELP}" echo fi |