From 54eac655af4bd275c62b7b8b0d6d9b076844467b Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 18 Nov 2016 20:50:59 +0200 Subject: [PATCH] fix(operation) _initPacker: proceed when error --- lib/client/operation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client/operation.js b/lib/client/operation.js index 08be3975..d38ac666 100644 --- a/lib/client/operation.js +++ b/lib/client/operation.js @@ -144,7 +144,7 @@ function _initPacker(prefix, fn) { DOM.Files.get('config', function(e, config) { if (e) - CloudCmd.log(e); + return CloudCmd.log(e); if (config.packer === 'zip') return _setPacker(prefix, 'salam', salam, fn);