Skip to content

Commit

Permalink
fix(core): fix CI env check
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Apr 27, 2024
1 parent 16e1e1c commit fccee25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PLUGINS=("git")
PRESET="conventional-commits"

# set `verbose` on `CI`
if [ "${CI:-}" == true ]; then
if [ -n "${CI:-}" ]; then
IS_VERBOSE=true
fi

Expand Down

0 comments on commit fccee25

Please sign in to comment.