Skip to content

Commit

Permalink
fix(starkliup): env script POSIX compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI committed Jul 30, 2024
1 parent bb2bc2c commit 950b63e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starkliup/install
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ esac
# Loads completions based on shell
if [ -n "\$ZSH_NAME" ]; then
fpath=(${STARKLI_ZSH_COMPLETIONS_DIR} \$fpath)
eval "fpath=(${STARKLI_ZSH_COMPLETIONS_DIR} \$fpath)"
autoload -U compinit
compinit
else
Expand All @@ -83,7 +83,7 @@ else
fi
;;
*/zsh)
fpath=(${STARKLI_ZSH_COMPLETIONS_DIR} \$fpath)
eval "fpath=(${STARKLI_ZSH_COMPLETIONS_DIR} \$fpath)"
autoload -U compinit
compinit
;;
Expand Down

0 comments on commit 950b63e

Please sign in to comment.