We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba22329 commit 16db8c0Copy full SHA for 16db8c0
build.py
@@ -7,7 +7,7 @@
7
8
9
def run_command(command: str, cwd: Path, env: Mapping[str, str]) -> None:
10
- result = subprocess.run(command, cwd=cwd, env=env, shell=True, check=True, text=True)
+ result = subprocess.run(command, cwd=cwd, env=env, shell=False, check=True, text=True)
11
if result.returncode != 0:
12
sys.exit(result.returncode)
13
0 commit comments