Fix Azure compatibility issue around stdin in Gruntfile.js

This commit is contained in:
Jay Beavers 2014-08-05 14:07:01 -07:00
parent 89389b3673
commit d0b1414597

View File

@ -224,7 +224,8 @@ var path = require('path'),
bower: { bower: {
command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower --allow-root install'), command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower --allow-root install'),
options: { options: {
stdout: true stdout: true,
stdin: false
} }
}, },
// #### Update Ghost-UI // #### Update Ghost-UI
@ -233,7 +234,8 @@ var path = require('path'),
ghost_ui: { ghost_ui: {
command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower update ghost-ui'), command: path.resolve(__dirname.replace(' ', '\\ ') + '/node_modules/.bin/bower update ghost-ui'),
options: { options: {
stdout: true stdout: true,
stdin: false
} }
}, },
// #### Generate coverage report // #### Generate coverage report