From 24b36cdd95052bb3f6405f29e823770ff842eeff Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Tue, 29 Mar 2022 10:39:04 +0200 Subject: [PATCH] Fixed: Allow space in path to .xib/.cib file when running nib2cib --- Jake/bundletask.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jake/bundletask.js b/Jake/bundletask.js index 04acbf8a2..341174dc0 100644 --- a/Jake/bundletask.js +++ b/Jake/bundletask.js @@ -447,7 +447,7 @@ BundleTask.prototype.defineResourceTask = function(aResourcePath, aDestinationPa filedir(cibDestinationPath, [aResourcePath], function() { try { - child_process.execSync("nib2cib " + aResourcePath + " " + cibDestinationPath + " " + nib2cibFlags, {stdio: 'inherit'}); + child_process.execSync("nib2cib '" + aResourcePath + "' '" + cibDestinationPath + "' " + nib2cibFlags, {stdio: 'inherit'}); } catch(error) { console.log(error); console.log(error.output.toString());