Skip to content

Commit

Permalink
Fix incorrect environment variable names in Grunt task.
Browse files Browse the repository at this point in the history
  • Loading branch information
csnover committed Apr 30, 2013
1 parent 60d1677 commit 0a2b79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt/intern.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function (grunt) {
});

[ 'sauceUsername', 'sauceAccessKey' ].forEach(function (option) {
opts[option] && (env[option] = opts[option]);
opts[option] && (env[{ sauceUsername: 'SAUCE_USERNAME', sauceAccessKey: 'SAUCE_ACCESS_KEY' }[option]] = opts[option]);
});

var child = grunt.util.spawn({
Expand Down

0 comments on commit 0a2b79c

Please sign in to comment.