Merge "Use pip install -r not -f to install extras"

This commit is contained in:
Zuul 2020-08-03 19:03:02 +00:00 committed by Gerrit Code Review
commit fea231676a

View File

@ -35,7 +35,7 @@ fi
# Add any requested extras to the list of things to install # Add any requested extras to the list of things to install
EXTRAS="" EXTRAS=""
for extra in $* ; do for extra in $* ; do
EXTRAS="${EXTRAS} -f /output/$extra/requirements.txt" EXTRAS="${EXTRAS} -r /output/$extra/requirements.txt"
done done
if [ -f /output/packages.txt ] ; then if [ -f /output/packages.txt ] ; then