mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-17 09:46:37 +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),
|
serverHost: nullify(options.host),
|
||||||
client: options.client || 'geth',
|
client: options.client || 'geth',
|
||||||
locale: options.locale,
|
locale: options.locale,
|
||||||
runWebserver: !options.noserver,
|
runWebserver: options.noserver == null ? null : !options.noserver,
|
||||||
useDashboard: !options.nodashboard,
|
useDashboard: !options.nodashboard,
|
||||||
logFile: options.logfile,
|
logFile: options.logfile,
|
||||||
logLevel: options.loglevel,
|
logLevel: options.loglevel,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user