diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-07 02:35:02 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-07 02:35:02 +0200 |
commit | 59cc8b9e39bb849175cc101865224d2487b2876d (patch) | |
tree | 5bde07c1bb637621f8e7577c61bf6ea598deecaa /install.sh | |
parent | 2bca2705e9c83010bfafc0e6debfab10f867c06d (diff) | |
download | arching-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-x | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |