Thu, 24 Jan 2008 15:05:45 +0800
Fixed output in die()
die() was using too many newlines after re-formatting
functions to fit inside 80 columns. The output was
confusing, now fixed.
Signed-off-by: Tim Post (tinkertim@gmail.com)
| libs/setup_installskel.sh | file | annotate | diff | revisions |
1.1 --- a/libs/setup_installskel.sh Thu Jan 24 13:48:34 2008 +0800 1.2 +++ b/libs/setup_installskel.sh Thu Jan 24 15:05:45 2008 +0800 1.3 @@ -53,11 +53,11 @@ 1.4 prog) 1.5 printf "\nThe program %s could not be found in your path\n" \ 1.6 "$why" 1.7 - printf "Please install '%s' (or ensure its in your path)\n" \ 1.8 + printf "Please install '%s' (or ensure its in your path) " \ 1.9 "$why" 1.10 printf "and try again.\n" 1.11 - printf "If you are running this as an ordinary user, make sure" 1.12 - printf "that /sbin and /usr/sbin are in your path.\n" 1.13 + printf "If you are running this as an ordinary user, make sure " 1.14 + printf "that /sbin and /usr/sbin\nare in your path.\n" 1.15 logg "FATAL: Could not find the program $why" 1.16 safe_exit EXIT_FAILURE 1.17 ;;