aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-07 02:35:02 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-07 02:35:02 +0200
commit59cc8b9e39bb849175cc101865224d2487b2876d (patch)
tree5bde07c1bb637621f8e7577c61bf6ea598deecaa /install.sh
parent2bca2705e9c83010bfafc0e6debfab10f867c06d (diff)
downloadarching-kaos-tools-59cc8b9e39bb849175cc101865224d2487b2876d.tar.gz
arching-kaos-tools-59cc8b9e39bb849175cc101865224d2487b2876d.tar.bz2
arching-kaos-tools-59cc8b9e39bb849175cc101865224d2487b2876d.zip
Tiny bug
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 3 insertions, 3 deletions
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"