Skip to content

Commit

Permalink
Merge pull request #629 from Martii/Issue-581fixProtocolForFakeS3
Browse files Browse the repository at this point in the history
Fix missing protocol for *fakeS3* which is needed for *node* v0.12.x

Auto-merge
  • Loading branch information
Martii committed May 1, 2015
2 parents 4d0a1a7 + 42aa3e3 commit eba4cab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion controllers/scriptStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (isPro) {
} else {
// You need to install (and ruby too): https://github.com/jubos/fake-s3
// Then run the fakes3.sh script or: fakes3 -r fakeS3 -p 10001
var DEV_AWS_URL = process.env.DEV_AWS_URL || 'localhost:10001';
var DEV_AWS_URL = process.env.DEV_AWS_URL || 'http://localhost:10001';
AWS.config.update({
accessKeyId: 'fakeId',
secretAccessKey: 'fakeKey',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"postinstall": "node dev/init.js"
},
"engines": {
"node": ">=0.10.32 <0.11.0",
"node": ">=0.10.32 <0.11.0 || >=0.12.0 <=0.12.2",
"npm": ">=1.4.28"
},
"private": true
Expand Down

0 comments on commit eba4cab

Please sign in to comment.