Skip to content

Commit

Permalink
test: use alternate node .tmp directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvonne Yip committed Oct 10, 2013
1 parent 7e88dc1 commit a555c1c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tasks/override-chrome-launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ module.exports = function(grunt) {
if (os === 'Darwin') {
var exec = require('child_process').exec;
var cb = this.async();
exec('npm install git://github.com/morethanreal/karma-chrome-launcher', null, function(err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb();
});
exec('npm install --tmp ../.tmp git://github.com/morethanreal/karma-chrome-launcher',
null, function(err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb();
});
}
});
};

0 comments on commit a555c1c

Please sign in to comment.