Skip to content

Commit

Permalink
Add missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Radchenko authored Jul 29, 2016
1 parent a3af17d commit ba2700a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = function uploadToGCS(plugin, config) {
var isGzipped = config.gzippedFilePaths.indexOf(filePath) !== -1;

return new Promise(function (resolve, reject) {
var destinationFilePath = config.bucketFolder ? path.join(config.bucketFolder,filePath) : filePath;
var destinationFilePath = config.bucketFolder ? path.join(config.bucketFolder, filePath) : filePath;

return bucket.upload(basePath, {
destination: destinationFilePath,
Expand Down

0 comments on commit ba2700a

Please sign in to comment.