Skip to content

Commit

Permalink
fix: set bail defaults correctly (#1382)
Browse files Browse the repository at this point in the history
  • Loading branch information
wemeetagain committed Oct 10, 2023
1 parent aa032c7 commit 46cc114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmds/exec.js
Expand Up @@ -28,7 +28,7 @@ export default {
bail: {
type: 'boolean',
describe: '',
default: userConfig.build.bundle
default: userConfig.exec.bail
}
})
},
Expand Down
2 changes: 1 addition & 1 deletion src/cmds/run.js
Expand Up @@ -28,7 +28,7 @@ export default {
bail: {
type: 'boolean',
describe: '',
default: userConfig.build.bundle
default: userConfig.run.bail
}
})
.positional('script', {
Expand Down

0 comments on commit 46cc114

Please sign in to comment.