Skip to content

Commit

Permalink
fix: correct a copy-paste error in a log message (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Raidok authored and gajus committed Jan 24, 2017
1 parent 9113572 commit 893d993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/writeIndexCli.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default (directoryPaths, options = {}) => {
if (options.updateIndex) {
log('Update index:', options.updateIndex ? chalk.green('true') : chalk.red('false'));
} else {
log('Recursive:', options.ignoreUnsafe ? chalk.green('true') : chalk.red('false'));
log('Recursive:', options.recursive ? chalk.green('true') : chalk.red('false'));
log('Ignore unsafe:', options.ignoreUnsafe ? chalk.green('true') : chalk.red('false'));
}

Expand Down

0 comments on commit 893d993

Please sign in to comment.