Skip to content

Commit

Permalink
Fix install.sh output (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderificnl authored Aug 25, 2023
1 parent 892c752 commit e2baa73
Showing 1 changed file with 6 additions and 3 deletions.
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

0 comments on commit e2baa73

Please sign in to comment.