From 8b015c91c9b10c208fe61cefd71ddc9f4fcbec61 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 1 Apr 2008 15:53:54 +0200 Subject: installswat: be more portable, use 'printf "%s"' instead of 'echo -n' Michael --- source/script/installswat.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/script/installswat.sh b/source/script/installswat.sh index 567bfa1a016..40596f3bd87 100755 --- a/source/script/installswat.sh +++ b/source/script/installswat.sh @@ -10,13 +10,13 @@ case $0 in *uninstall*) echo "Removing SWAT from $DESTDIR/$SWATDIR " echo "Removing the Samba Web Administration Tool " - echo -n "Removed " + printf "%s" "Removed " mode='uninstall' ;; *) echo "Installing SWAT in $DESTDIR/$SWATDIR " echo "Installing the Samba Web Administration Tool " - echo -n "Installing " + printf "%s" "Installing " mode='install' ;; esac -- cgit