Skip to content

Commit

Permalink
ci: fix prepare script to check for empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
ju-Skinner committed Oct 24, 2023
1 parent 2b066f6 commit e278ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .scripts/prepare.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const isCi = process.env.CI !== undefined
const isCi = process.env.CI !== ''
if (!isCi) {
require('husky').install;
}

0 comments on commit e278ec0

Please sign in to comment.