We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 586e672 commit ad63f51Copy full SHA for ad63f51
tasks/publish-to-aws.js
@@ -59,10 +59,10 @@ module.exports = function(grunt) {
59
'handlebars.runtime.js',
60
'handlebars.runtime.min.js'
61
];
62
- const publishPromises = filenames.map(filename => {
+ const publishPromises = filenames.map(async filename => {
63
const nameInBucket = getNameInBucket(filename, suffix);
64
const localFile = getLocalFile(filename);
65
- uploadToBucket(localFile, nameInBucket);
+ await uploadToBucket(localFile, nameInBucket);
66
grunt.log.writeln(
67
`Published ${localFile} to build server (${nameInBucket})`
68
);
0 commit comments