mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Fix Azure compatibility issue around stdin in Gruntfile.js
This commit is contained in:
parent
89389b3673
commit
d0b1414597
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue