From d0b1414597f9e81428f469564f814490d2d7e66d Mon Sep 17 00:00:00 2001 From: Jay Beavers Date: Tue, 5 Aug 2014 14:07:01 -0700 Subject: [PATCH] Fix Azure compatibility issue around stdin in Gruntfile.js --- Gruntfile.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2dcf95b928..3a754c6b33 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -224,7 +224,8 @@ var path = require('path'), bower: { command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower --allow-root install'), options: { - stdout: true + stdout: true, + stdin: false } }, // #### Update Ghost-UI @@ -233,7 +234,8 @@ var path = require('path'), ghost_ui: { command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower update ghost-ui'), options: { - stdout: true + stdout: true, + stdin: false } }, // #### Generate coverage report