Skip to content

Commit

Permalink
Check that HUSKY_DEBUG equals "true"
Browse files Browse the repository at this point in the history
  • Loading branch information
typicode committed Oct 11, 2018
1 parent 0177900 commit 89efe65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer/bin.ts
Expand Up @@ -3,7 +3,7 @@ import * as path from 'path'
import { install, uninstall } from './'

// Just for testing
if (process.env.HUSKY_DEBUG) {
if (process.env.HUSKY_DEBUG === 'true') {
console.log(`husky:debug INIT_CWD=${process.env.INIT_CWD}`)
}

Expand Down

0 comments on commit 89efe65

Please sign in to comment.