diff --git a/cmd/cmd.js b/cmd/cmd.js index fd7f34ea..a794e875 100644 --- a/cmd/cmd.js +++ b/cmd/cmd.js @@ -265,8 +265,9 @@ class Cmd { scaffold() { program .command('scaffold [contract] [environment]') - .option('--framework', 'UI framework to use. (default: react)') + .option('--framework ', 'UI framework to use. (default: react)') .action(function(contract, env, options){ + let environment = env || 'development'; if(contract === undefined){ @@ -279,7 +280,7 @@ class Cmd { }); options.contract = contract; - options.framework = options.framework || 'react'; + options.framework = options.framework || 'react'; options.env = environment; embark.scaffold(options); });