-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added reboot instruction #88
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
install.sh
Outdated
@@ -177,3 +177,4 @@ fi | |||
# Installation Complete | |||
echo | |||
echo [~] Installation Complete.... | |||
echo [~] Reboot the terminal to affect changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably you should use "restart" the terminal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alternatively, why don't you integrate this answer into the shell script: https://unix.stackexchange.com/questions/217905/restart-bash-from-terminal-without-restarting-the-terminal-application-mac
The exec bash command has been added as per suggestion. Albeit after further re-attempts, I have found out it happens to work even without retarting the terminal. Have added the command anyways just in case,
@@ -177,3 +177,5 @@ fi | |||
# Installation Complete | |||
echo | |||
echo [~] Installation Complete.... | |||
echo [~] Restart the terminal to affect changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think Restart the terminal for the changes to take effect.
seems more correct. What do you think?
@@ -177,3 +177,5 @@ fi | |||
# Installation Complete | |||
echo | |||
echo [~] Installation Complete.... | |||
echo [~] Restart the terminal to affect changes. | |||
exec bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably be $SHELL
here 🤔
38c27b8
to
d13a35f
Compare
No description provided.