mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
ensure all packaged files are world-readable
https://forums.ankiweb.net/t/anki-2-1-50-beta/15608/4
This commit is contained in:
parent
9af87ba082
commit
cbc4f25be7
1 changed files with 3 additions and 0 deletions
|
@ -225,6 +225,9 @@ def merge_into_dist(output_folder: Path, pyqt_src_path: Path):
|
|||
],
|
||||
check=True,
|
||||
)
|
||||
# Ensure all files are world-readable
|
||||
if not is_win:
|
||||
subprocess.run(["chmod", "-R", "a+r", output_folder])
|
||||
|
||||
|
||||
build_pyoxidizer()
|
||||
|
|
Loading…
Reference in a new issue