Skip to content

Commit

Permalink
fix: CI env variable check
Browse files Browse the repository at this point in the history
  • Loading branch information
yue4u committed Sep 27, 2023
1 parent d665fec commit f5d5dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

readonly DEV='dev'

if [[ -z "$CI" ]]; then
if [[ "$CI" == "true" ]]; then
echo "[info] skip confirm on CI"
exit 0
fi
Expand Down

0 comments on commit f5d5dcd

Please sign in to comment.