From 142dc445c75bc88755ae7f5d3cf5b7b4e62f9e29 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 25 Dec 2017 22:16:34 +0530 Subject: [PATCH] Space issue in path while deploying fix --- app-cli/captainduckduck-deploy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-cli/captainduckduck-deploy.js b/app-cli/captainduckduck-deploy.js index 5aa0edc..39d6ed8 100755 --- a/app-cli/captainduckduck-deploy.js +++ b/app-cli/captainduckduck-deploy.js @@ -168,7 +168,7 @@ function deployTo(machineToDeploy, branchToPush, appName) { console.log(zipFileFullPath); console.log(' '); - exec('git archive --format tar --output ' + zipFileFullPath + ' ' + branchToPush, function (err, stdout, stderr) { + exec('git archive --format tar --output "' + zipFileFullPath + '" ' + branchToPush, function (err, stdout, stderr) { if (err) { console.log(chalk.red('TAR file failed')); console.log(chalk.red(err + ' '));