From 86d3ca48ae086c3833db345e24a545ab89cb7e56 Mon Sep 17 00:00:00 2001 From: Hayden Knowles Date: Tue, 15 Nov 2016 22:40:57 +1300 Subject: [PATCH] moved newline to correct place --- automated install/uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated install/uninstall.sh b/automated install/uninstall.sh index abba88a5..6ed429aa 100755 --- a/automated install/uninstall.sh +++ b/automated install/uninstall.sh @@ -82,7 +82,7 @@ removeAndPurge() { read -rp "::: Do you wish to remove ${i} from your system? [y/n]: " yn case ${yn} in [Yy]* ) printf ":::\tRemoving %s..." "${i}"; ${SUDO} ${PKG_REMOVE} "${i}" &> /dev/null & spinner $!; printf "done!\n"; break;; - [Nn]* ) printf ":::\tSkipping %s" "${i}\n"; break;; + [Nn]* ) printf ":::\tSkipping %s\n" "${i}"; break;; * ) printf "::: You must answer yes or no!\n";; esac done