From 38424487f1a46c97ce34c2168bf641a1ff49a0d2 Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Tue, 13 Feb 2024 15:59:04 -0500 Subject: [PATCH] Unbreak the pip-compile command when multiple files are passed in (#14875) --- requirements/updater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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