Skip to content

Add the full path to the error prompt message #39

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ if [[ ":$PATH:" == *":$HOME/bin:"* ]]; then
echo "Your path is correctly set"
else
echo "Your path is missing ~/bin, you might want to add it."
echo "If you use bash, add 'export PATH=\"\${PATH}:\${HOME}/bin\"' to your .bashrc file, and then run \"source .bashrc\""
echo "If you use zsh, add 'export PATH=\"\${PATH}:\${HOME}/bin\"' to your .zshrc file, and then run \"source .zshrc\""
echo "If you use fish, add 'fish_add_path -m ~/bin' to your config.fish file, and then run \"source config.fish\""
echo "If you use bash, add 'export PATH=\"\${PATH}:\${HOME}/bin\"' to your ~/.bashrc file, and then run \"source ~/.bashrc\""
echo "If you use zsh, add 'export PATH=\"\${PATH}:\${HOME}/bin\"' to your ~/.zshrc file, and then run \"source ~/.zshrc\""
echo "If you use fish, add 'fish_add_path -m ~/bin' to your config.fish file, and then run \"source ~/.config/fish/config.fish\""
exit 1
fi

Expand Down