summaryrefslogtreecommitdiffstats
path: root/requirements
diff options
context:
space:
mode:
authorJeff Bradberry <jeff.bradberry@gmail.com>2024-02-13 21:59:04 +0100
committerGitHub <noreply@github.com>2024-02-13 21:59:04 +0100
commit38424487f1a46c97ce34c2168bf641a1ff49a0d2 (patch)
tree3a7f9c6a689cfa6385a85f7e3ea8d1a074632861 /requirements
parentSwitch to docker_compose_v2 in tools playbook (#14872) (diff)
downloadawx-38424487f1a46c97ce34c2168bf641a1ff49a0d2.tar.xz
awx-38424487f1a46c97ce34c2168bf641a1ff49a0d2.zip
Unbreak the pip-compile command when multiple files are passed in (#14875)
Diffstat (limited to 'requirements')
-rwxr-xr-xrequirements/updater.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements/updater.sh b/requirements/updater.sh
index 6dde1e2051..4b16d8db38 100755
--- a/requirements/updater.sh
+++ b/requirements/updater.sh
@@ -23,7 +23,7 @@ generate_requirements() {
# FIXME: https://github.com/jazzband/pip-tools/issues/1558
${venv}/bin/python3 -m pip install -U 'pip<22.0' pip-tools
- ${pip_compile} "$1" --output-file requirements.txt
+ ${pip_compile} $1 --output-file requirements.txt
# consider the git requirements for purposes of resolving deps
# Then remove any git+ lines from requirements.txt
if [[ "$sanitize_git" == "1" ]] ; then