Skip to content

Commit

Permalink
#224: spec/acceptance/test_spec.js: ':' --> path.delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
yeputons committed Jan 20, 2014
1 parent bd7c019 commit 5c7e5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/acceptance/test_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var appDir = path.join(appHome, 'app');
before(function(done){
// ensure our "cached" CURL is in the path
process.env._METEORITE_REAL_GIT = which.sync('git');
process.env.PATH = [path.resolve(path.join('spec', 'support', 'bin')), process.env.PATH].join(':');
process.env.PATH = [path.resolve(path.join('spec', 'support', 'bin')), process.env.PATH].join(path.delimiter);
process.env._METEORITE_REAL_CURL = which.sync('curl');
process.env._METEORITE_REAL_METEOR = path.basename(which.sync('meteor'));

Expand Down

0 comments on commit 5c7e5b5

Please sign in to comment.