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

Commit

Permalink
fix cli parsing of --dev flag
Browse files Browse the repository at this point in the history
  • Loading branch information
w33ble committed Dec 22, 2016
1 parent 9f223d2 commit 3aa37c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/plugin-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ program
.on('--help', docs('test/browser'))
.action(taskRunner(function (command) {
run('testBrowser', {
dev: Boolean(command.options.dev),
dev: Boolean(command.dev),
plugins: command.plugins,
});
}));
Expand Down

0 comments on commit 3aa37c2

Please sign in to comment.