Skip to content

Commit

Permalink
fix(configure ice): remove default --quiet flag (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladdoster authored Feb 20, 2024
1 parent 8a64c24 commit 6511ca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zinit.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -2275,8 +2275,8 @@ $match[7]}:-${ZINIT[__last-formatter-code]}}}:+}}}//←→}
if (( $+ZINIT_ICES[configure] || $+ZINIT_ICES[cmake] || $+ZINIT_ICES[make] )); then
ZINIT_ICES[null]=
fi
(( $+ZINIT_ICES[configure] )) && ZINIT_ICES[configure]=${ZINIT_ICES[configure]:---quiet}
(( $+ZINIT_ICES[make] )) && ZINIT_ICES[make]=${ZINIT_ICES[make]:-install}
(( $+ZINIT_ICES[configure] )) && ZINIT_ICES[configure]="${ZINIT_ICES[configure]}"
(( $+ZINIT_ICES[make] )) && ZINIT_ICES[make]="${ZINIT_ICES[make]:-install}"
return retval
} # ]]]
# FUNCTION: .zinit-pack-ice [[[
Expand Down

0 comments on commit 6511ca7

Please sign in to comment.