Skip to content

Commit

Permalink
fix: check CI env if true
Browse files Browse the repository at this point in the history
  • Loading branch information
ambiere committed Jan 25, 2024
1 parent b124fcc commit c19aa84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .husky/install.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if (process.env.NODE_ENV === "production" || process.env.CI === "1") {
if (process.env.NODE_ENV === "production" || process.env.CI === "true") {
process.exit(0)
}

Expand Down

0 comments on commit c19aa84

Please sign in to comment.