diff --git a/scripts/build-release.py b/scripts/build-release.py index f9d09c0a..c66ee592 100755 --- a/scripts/build-release.py +++ b/scripts/build-release.py @@ -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)