Remove not used options
This commit is contained in:
parent
c195fde051
commit
65bebcd3e1
|
@ -142,7 +142,6 @@ class Cmd {
|
||||||
console() {
|
console() {
|
||||||
program
|
program
|
||||||
.command('console [environment]')
|
.command('console [environment]')
|
||||||
.option('-p, --port [port]', __('port to run the dev webserver (default: %s)', '8000'))
|
|
||||||
.option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc'))
|
.option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc'))
|
||||||
.option('--no-color', __('no colors in case it\'s needed for compatbility purposes'))
|
.option('--no-color', __('no colors in case it\'s needed for compatbility purposes'))
|
||||||
.option('--logfile [logfile]', __('filename to output logs (default: %s)', 'none'))
|
.option('--logfile [logfile]', __('filename to output logs (default: %s)', 'none'))
|
||||||
|
@ -153,8 +152,6 @@ class Cmd {
|
||||||
i18n.setOrDetectLocale(options.locale);
|
i18n.setOrDetectLocale(options.locale);
|
||||||
embark.console({
|
embark.console({
|
||||||
env: env || 'development',
|
env: env || 'development',
|
||||||
serverPort: options.port,
|
|
||||||
serverHost: options.host,
|
|
||||||
client: options.client || 'geth',
|
client: options.client || 'geth',
|
||||||
locale: options.locale,
|
locale: options.locale,
|
||||||
logFile: options.logfile,
|
logFile: options.logfile,
|
||||||
|
|
Loading…
Reference in New Issue