From 5fa2cd47bbf6163464357fbfcece45087ac0faa2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=CC=88rn=20Zaefferer?= Date: Sun, 11 Mar 2012 12:34:52 +0100 Subject: [PATCH] Build/grunt: Replace child_process helper with utils.spawn --- grunt.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grunt.js b/grunt.js index 585aed809..b7d893cb8 100644 --- a/grunt.js +++ b/grunt.js @@ -325,7 +325,7 @@ task.registerBasicTask('zip', 'Create a zip file for release', function() { var dest = this.file.dest; var src = template.process(this.file.src, config()); - task.helper("child_process", { + utils.spawn({ cmd: "zip", args: ["-r", dest, src], opts: { @@ -418,7 +418,7 @@ task.registerTask('download_themes', function() { // var zip = new AdmZip(zipFileName); // zip.extractAllTo('dist/tmp/' + index + '/'); // until then, using cli unzip... - task.helper("child_process", { + utils.spawn({ cmd: "unzip", args: ["-d", "dist/tmp/" + index, zipFileName] }, function(err, result) { @@ -509,7 +509,7 @@ task.registerBasicTask("compare_size", "Compare size of this branch to master", }); }); task.registerHelper("git_current_branch", function(done) { - task.helper("child_process", { + utils.spawn({ cmd: "git", args: ["branch", "--no-color"] }, function(err, result) { -- 2.39.5