Skip to content

Commit

Permalink
Added X perm. for owner of volume folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Casvt committed Nov 5, 2023
1 parent 8d87078 commit 5bea5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ def move_volume_folder(volume_id: int, new_root_folder: int, new_volume_folder:
renamed_files
)

makedirs(new_folder, 0o664, exist_ok=True)
makedirs(new_folder, 0o764, exist_ok=True)
for new_filepath, old_filepath in renamed_files:
move(old_filepath, new_filepath)

Expand Down

0 comments on commit 5bea5d3

Please sign in to comment.