Skip to content

Commit 8fffc1f

Browse files
acburdineErisDS
authored andcommitted
fix(setup): remove boolean constraint from start flag
no issue - if the boolean constraint is enabled, then argv.start will be false in the case that `--no-start` is provided OR neither `--start` nor `--no-start` is passed. This change makes the functionality work as intended
1 parent 6cee3a3 commit 8fffc1f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/commands/setup.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ SetupCommand.description = 'Setup an installation of Ghost (after it is installe
189189
SetupCommand.params = '[stages..]';
190190
SetupCommand.options = {
191191
start: {
192-
description: '[--no-start] Enable/disable automatically starting Ghost',
193-
type: 'boolean'
192+
description: '[--no-start] Enable/disable automatically starting Ghost'
194193
},
195194
local: {
196195
alias: 'l',

0 commit comments

Comments
 (0)