o644 -> o744

This commit is contained in:
dr-frmr 2024-11-13 15:05:58 -05:00
parent 446654a4fb
commit f53e6fddd9
No known key found for this signature in database

View File

@ -60,7 +60,7 @@ def build_and_move(feature, tmp_dir, architecture, os_name):
source_path = f"target/release/{binary_name}"
dest_path = os.path.join(tmp_dir, binary_name)
shutil.move(source_path, dest_path)
os.chmod(dest_path, 0o644)
os.chmod(dest_path, 0o744)
# Create a zip archive of the binary
zip_path = os.path.join(tmp_dir, zip_name)