# HG changeset patch # User Tim Post # Date 1201158345 -28800 # Node ID fc888ff3ced74c4a4eed03d6912ce97726f55550 # Parent 1115a3d0d415e3af9228de61c8b9b4fbd5d3daed 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) diff -r 1115a3d0d415 -r fc888ff3ced7 libs/setup_installskel.sh --- a/libs/setup_installskel.sh Thu Jan 24 13:48:34 2008 +0800 +++ b/libs/setup_installskel.sh Thu Jan 24 15:05:45 2008 +0800 @@ -53,11 +53,11 @@ prog) printf "\nThe program %s could not be found in your path\n" \ "$why" - printf "Please install '%s' (or ensure its in your path)\n" \ + printf "Please install '%s' (or ensure its in your path) " \ "$why" printf "and try again.\n" - printf "If you are running this as an ordinary user, make sure" - printf "that /sbin and /usr/sbin are in your path.\n" + printf "If you are running this as an ordinary user, make sure " + printf "that /sbin and /usr/sbin\nare in your path.\n" logg "FATAL: Could not find the program $why" safe_exit EXIT_FAILURE ;;