From 59cc8b9e39bb849175cc101865224d2487b2876d Mon Sep 17 00:00:00 2001 From: kaotisk Date: Sat, 7 Dec 2024 02:35:02 +0200 Subject: Tiny bug --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 895a610..5655dec 100755 --- a/install.sh +++ b/install.sh @@ -84,14 +84,14 @@ do curl -o nvm_installer.sh https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh if [ $? -ne 0 ] then - print "\t Failed to download!\n" + printf "\t Failed to download!\n" exit 1 fi printf "\t Downloaded!" bash nvm_installer.sh if [ $? -ne 0 ] then - print "\t Failed to install nvm!\n" + printf "\t Failed to install nvm!\n" exit 1 fi printf "\t nvm installed!" @@ -99,7 +99,7 @@ do nvm install $(nvm ls-remote|tail -n 1) if [ $? -ne 0 ] then - print "\t Failed to install nodejs!\n" + printf "\t Failed to install nodejs!\n" exit 1 fi printf "\t nodejs installed!\n" -- cgit v1.2.3