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 8122993 commit 8aa366dCopy full SHA for 8aa366d
setuptools/tests/test_wheel.py
@@ -695,6 +695,7 @@ def build_wheel(extra_file_defs=None, **kwargs):
695
install_tree, project_name,
696
version, None)
697
w = Wheel(filename)
698
- script_sh = pathlib.Path(install_dir) / w.egg_name() / "EGG-INFO" / "scripts" / "script.sh"
+ base = pathlib.Path(install_dir) / w.egg_name()
699
+ script_sh = base / "EGG-INFO" / "scripts" / "script.sh"
700
assert script_sh.exists()
701
assert oct(stat.S_IMODE(script_sh.stat().st_mode)) == "0o777"
0 commit comments