We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2abec37 commit f1bad96Copy full SHA for f1bad96
noxfile.py
@@ -5,6 +5,7 @@
5
import pathlib
6
import nox
7
import shutil
8
+import sys
9
import sysconfig
10
import uuid
11
@@ -78,6 +79,9 @@ def azure_pet_build_after(session: nox.Session):
78
79
bin_dest = dest_dir / "bin" / bin_name
80
shutil.copyfile(abs_bin_path, bin_dest)
81
82
+ if sys.platform != "win32":
83
+ shutil.chmod(bin_dest, 0o755)
84
+
85
86
@nox.session()
87
def native_build(session: nox.Session):
0 commit comments