diff --git a/91_install_cli.sh b/91_install_cli.sh index 70768c7..2b84553 100755 --- a/91_install_cli.sh +++ b/91_install_cli.sh @@ -20,9 +20,9 @@ export PATH="$HOME/bin:$PATH" read -p "Do you want to add $HOME/bin to PATH? (y/n) " answer if [[ "$answer" == "y" ]]; then - echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc - source ~/.bashrc - echo "Added $HOME/bin to PATH." + echo 'export PATH="$HOME/bin:$PATH"' >> $HOME/.bashrc + source $HOME/.bashrc + echo "Added $HOME/bin to PATH. You may need to restart your terminal for the changes to take effect." fi fi