Skip to content

Commit

Permalink
Fix case typo
Browse files Browse the repository at this point in the history
  • Loading branch information
feugy committed Jun 9, 2016
1 parent 68fa799 commit a682276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -62,7 +62,7 @@ gulp.task('test', ['cleanBuild'], function(callback){
}
spawn(cmd, [], {
stdio:'inherit',
env: Object.Assign({}, process.env, {NODE_ENV:"test"})
env: Object.assign({}, process.env, {NODE_ENV:"test"})
}).on('exit', function(code) {
if (callback) {
callback(code === 0 ? null : code);
Expand Down

0 comments on commit a682276

Please sign in to comment.