Skip to content
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

Fix install.sh output #842

Merged
merged 1 commit into from
Aug 25, 2023
Merged
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
9 changes: 6 additions & 3 deletions packaging/standalone/install.envsubst
Original file line number Diff line number Diff line change
Expand Up @@ -138,19 +138,22 @@ after_finish_help() {
case "${SHELL:-}" in
*/zsh)
info "rtx: run the following to activate rtx in your shell:"
info "echo \"eval \\\"\\\$($install_path activate zsh)\\\"\" >> ~/.zshrc\n"
info "echo \"eval \\\"\\\$($install_path activate zsh)\\\"\" >> ~/.zshrc"
info ""
info "rtx: this must be run in order to use rtx in the terminal"
info "rtx: run \`rtx doctor\` to verify this is setup correctly"
;;
*/bash)
info "rtx: run the following to activate rtx in your shell:"
info "echo \"eval \\\"\\\$($install_path activate bash)\\\"\" >> ~/.bashrc\n"
info "echo \"eval \\\"\\\$($install_path activate bash)\\\"\" >> ~/.bashrc"
info ""
info "rtx: this must be run in order to use rtx in the terminal"
info "rtx: run \`rtx doctor\` to verify this is setup correctly"
;;
*/fish)
info "rtx: run the following to activate rtx in your shell:"
info "echo \"$install_path activate fish | source\" >> ~/.config/fish/config.fish\n"
info "echo \"$install_path activate fish | source\" >> ~/.config/fish/config.fish"
info ""
info "rtx: this must be run in order to use rtx in the terminal"
info "rtx: run \`rtx doctor\` to verify this is setup correctly"
;;
Expand Down