Skip to content

Commit

Permalink
fix for ksh
Browse files Browse the repository at this point in the history
  • Loading branch information
joknarf committed Oct 7, 2024
1 parent 5cd7865 commit acef0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thefly
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ cat - <<'EOF' > "$_flib/.loginshell"
case "$FLY_SHELL" in
*bash) exec bash --noprofile --init-file "$FLY_HOME/.fly.d/.fly.lib/.login";;
*zsh) ZDOTDIR=$FLY_HOME/.fly.d/.fly.lib exec zsh -di;;
*ksh) ENV=$FLY_HOME/.fly.d/.fly.lib/.login exec ksh -i;;
*ksh) export ENV=$FLY_HOME/.fly.d/.fly.lib/.login;exec ksh -i;;
esac
EOF

Expand Down

0 comments on commit acef0e2

Please sign in to comment.