fix(cloudcmd) config: save -> write (#247)

This commit is contained in:
coderaiser 2019-06-06 17:56:44 +03:00
parent aca5ad0c4b
commit d52fe75e43

View file

@ -223,7 +223,7 @@ function main() {
const caller = (fn) => fn();
importConfig(config)
.then(args.save ? caller(config.save) : noop)
.then(args.save ? caller(config.write) : noop)
.then(startWraped);
}