From b046e3f804d913c473e23927afd6021fc7db8c1c Mon Sep 17 00:00:00 2001 From: LPJon <46533576+LPJon@users.noreply.github.com> Date: Wed, 30 Aug 2023 20:37:11 -0500 Subject: [PATCH] Update install_terminal changed ~/.bashrc to $HOME/.bashrc to use system variable for current user. --- install_terminal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_terminal b/install_terminal index 691ce90..4f9f666 100644 --- a/install_terminal +++ b/install_terminal @@ -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