Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jamhall/s3rver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c1b4905d6f4ca98fa76c3792059dcd64a3aeedd3
Choose a base ref
..
head repository: jamhall/s3rver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e8fe806f77fd34703a002300f8726b15e28b2301
Choose a head ref
Showing with 1 addition and 39 deletions.
  1. +0 −35 .vscode/launch.json
  2. +0 −3 .vscode/settings.json
  3. +1 −1 lib/stores/filesystem.js
35 changes: 0 additions & 35 deletions .vscode/launch.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion lib/stores/filesystem.js
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@ class FilesystemStore {

async putBucket(bucket) {
const bucketPath = this.getBucketPath(bucket);
await fs.mkdirp(bucketPath, 0o7550);
await fs.mkdirp(bucketPath, 0o0755);
return this.getBucket(bucket);
}