Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #44 from Financial-Times/add-nha-folder-name
Browse files Browse the repository at this point in the history
Put hashed assets in a next-hashed-assets folder
  • Loading branch information
adgad committed Apr 2, 2015
2 parents a2d954d + 9ab3825 commit 4489dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/deploy-hashed-assets-s3.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function hashAndUpload(opts) {
var file = opts.file;
var app = opts.app;
var bucket = 'ft-next-hashed-assets-prod';
var key = app + '/' + file.hashedName;
var key = 'next-hashed-assets/' + app + '/' + file.hashedName;

return new Promise(function(resolve, reject) {
var s3bucket = new aws.S3({params: {Bucket: bucket}});
Expand Down

0 comments on commit 4489dd1

Please sign in to comment.