Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 2c82ba2

Browse files
author
Nick Litwin
committed
Remove double quotes
1 parent 061e265 commit 2c82ba2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

gulp-tasks/deploy.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ module.exports = function(gulp, $, config, utilities) {
99
params: {
1010
Bucket: config.aws.bucket
1111
},
12-
"accessKeyId": config.aws.key,
13-
"secretAccessKey": config.aws.secret
12+
'accessKeyId': config.aws.key,
13+
'secretAccessKey': config.aws.secret
1414
};
1515

16-
// create a new publisher
1716
var publisher = $.awspublish.create(awsConfig);
1817

1918
utilities.log('Deploying to S3');
@@ -26,7 +25,7 @@ module.exports = function(gulp, $, config, utilities) {
2625
public: true
2726
},
2827
routes: {
29-
"^.+$": "$&"
28+
'^.+$': '$&'
3029
}
3130
}));
3231

@@ -38,10 +37,10 @@ module.exports = function(gulp, $, config, utilities) {
3837
public: true
3938
},
4039
routes: {
41-
"^.+\\.html": {
40+
'^.+\\.html': {
4241
cacheTime: 0
4342
},
44-
"^.+$": "$&"
43+
'^.+$': '$&'
4544
}
4645
}));
4746

0 commit comments

Comments
 (0)