From d52fe75e4348d5006df5899b1ae6d09bda5804e7 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 6 Jun 2019 17:56:44 +0300 Subject: [PATCH] fix(cloudcmd) config: save -> write (#247) --- bin/cloudcmd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cloudcmd.js b/bin/cloudcmd.js index afda5cb8..9baa5beb 100755 --- a/bin/cloudcmd.js +++ b/bin/cloudcmd.js @@ -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); }