mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-24 04:31:27 +00:00
allow config to determine webserver enabled if no --noserver cli opt
This commit is contained in:
parent
a966ecb131
commit
638fb4ee27
@ -185,7 +185,7 @@ class Cmd {
|
||||
serverHost: nullify(options.host),
|
||||
client: options.client || 'geth',
|
||||
locale: options.locale,
|
||||
runWebserver: !options.noserver,
|
||||
runWebserver: options.noserver == null ? null : !options.noserver,
|
||||
useDashboard: !options.nodashboard,
|
||||
logFile: options.logfile,
|
||||
logLevel: options.loglevel,
|
||||
|
Loading…
x
Reference in New Issue
Block a user