Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,8 @@ def copy_and_set_permissions(source_glob: str, destination: str) -> None:
f"find {destination} -maxdepth 0 ! -perm 775 -exec chmod 775 {{}} +"
)
execute_command(
f"find {destination} -type f ! -perm 664 -exec chmod 664 {{}} +"
f"find {destination} -maxdepth 1 -type f -user $USER ! -perm 664 "
f"-exec chmod 664 {{}} +"
)

copy_and_set_permissions(f"{source}/downloads/*", destination)
Expand Down
Loading