Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.

Commit 5dc0046

Browse files
committed
fix: do not use shell to run rattler-build
1 parent 93e33bc commit 5dc0046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda_forge_feedstock_check_solvable/rattler_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def run_rattler_build(command):
1414
# Run the command and capture output
1515
print_debug("Running: %s", " ".join(command))
1616
result = subprocess.run(
17-
" ".join(command), shell=True, check=False, capture_output=True, text=True
17+
command, check=False, capture_output=True, text=True
1818
)
1919

2020
# Get the status code

0 commit comments

Comments
 (0)