Skip to content

Commit e40c0d2

Browse files
committed
Grunt saucelabs: wrap key in function
1 parent 8a170d9 commit e40c0d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = function(grunt) {
3939
all: {
4040
options: {
4141
username: process.env.SAUCE_USERNAME,
42-
key: process.env.SAUCE_ACCESS_KEY,
42+
key: function() { return process.env.SAUCE_ACCESS_KEY; },
4343
urls: ['http://127.0.0.1:3000/unittests.html'],
4444
build: process.env.TRAVIS_JOB_ID,
4545
testname: 'Sauce Unit Test for scrypt-async-js',

0 commit comments

Comments
 (0)