Skip to content

Commit

Permalink
GCP: send correct Content-Type header.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Nov 11, 2019
1 parent 3a9804e commit 79a93a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io-methods/google-cloud-storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ exports.writeManifest = function(filePath, data) {
return storage
.bucket(bucketName)
.file(fileName)
.save(data)
.save(data, {contentType: 'application/json'})
})
}

0 comments on commit 79a93a2

Please sign in to comment.