mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Prefer npm created node_modules/.bin/grunt
This commit is contained in:
@@ -5,5 +5,6 @@ var path = require('path');
|
||||
process.chdir(path.dirname(__dirname));
|
||||
|
||||
safeExec('node script/bootstrap', function() {
|
||||
safeExec('node node_modules/grunt-cli/bin/grunt ci --stack --no-color', process.exit);
|
||||
var gruntPath = path.join('node_modules', '.bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
|
||||
safeExec(gruntPath + ' ci --stack --no-color', process.exit);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user