Skip to content

Commit

Permalink
cmd/aliases: Fix zsh alias creation
Browse files Browse the repository at this point in the history
  • Loading branch information
ipf authored Jul 22, 2024
1 parent a4c5949 commit e446251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/aliases/zsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
hugo() {
hvm_show_status=true
if hugo_bin=$(hvm status --printExecPathCached); then
if [ "${hvm_show_status}" == true ]; then
if [ "${hvm_show_status}" = true ]; then
>&2 printf "Hugo version management is enabled in this directory.\\n"
>&2 printf "Run 'hvm status' for details, or 'hvm disable' to disable.\\n\\n"
fi
Expand Down

0 comments on commit e446251

Please sign in to comment.