mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
Fixed: Allow space in path to .xib/.cib file when running nib2cib
This commit is contained in:
+1
-1
@@ -447,7 +447,7 @@ BundleTask.prototype.defineResourceTask = function(aResourcePath, aDestinationPa
|
|||||||
filedir(cibDestinationPath, [aResourcePath], function()
|
filedir(cibDestinationPath, [aResourcePath], function()
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
child_process.execSync("nib2cib " + aResourcePath + " " + cibDestinationPath + " " + nib2cibFlags, {stdio: 'inherit'});
|
child_process.execSync("nib2cib '" + aResourcePath + "' '" + cibDestinationPath + "' " + nib2cibFlags, {stdio: 'inherit'});
|
||||||
} catch(error) {
|
} catch(error) {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
console.log(error.output.toString());
|
console.log(error.output.toString());
|
||||||
|
|||||||
Reference in New Issue
Block a user