Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: sharness tests (#1787)
Browse files Browse the repository at this point in the history
Prevents passing "" as the config option which then is validated and fails.
  • Loading branch information
alanshaw committed Dec 19, 2018
1 parent 70a8cfe commit 48d3e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = {
repo: new Repo(path),
init: false,
start: false,
config: argv.config
config: argv.config || {}
})

node.init({
Expand Down

0 comments on commit 48d3e2b

Please sign in to comment.