fix(cloudcmd) ignore commandl line options when --save flag set

This commit is contained in:
coderaiser 2015-06-30 05:31:38 -04:00
parent 3c538da449
commit ef0fb11a23

View file

@ -89,10 +89,12 @@
if (args.password)
options.password = args.password;
if (args.save)
config.save(start);
else
if (!args.save)
start(options);
else
config.save(function() {
start(options);
});
}
function deprecate(was, became) {