Update install_terminal

changed ~/.bashrc to $HOME/.bashrc to use system variable for current user.
This commit is contained in:
LPJon
2023-08-30 20:37:11 -05:00
committed by GitHub
parent 7b4e57fd01
commit b046e3f804

View File

@@ -26,7 +26,7 @@ elif [ "$usenvm" == "y" ]; then
if [ ! -d "$HOME/.nvm" ]; then
yum -y install curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
source $HOME/.bashrc
nvm install "$nodeversion"
nvm use "$nodeversion"
fi