Fix pip args

This commit is contained in:
TheSpad 2022-09-05 22:32:17 +01:00
parent f121ec8620
commit 9b539b59ab
No known key found for this signature in database
GPG key ID: 08F06191F4587860

View file

@ -27,7 +27,7 @@ if [[ -f "/mod-pip-packages-to-install.list" ]]; then
PIP_ARGS="-f https://wheel-index.linuxserver.io/alpine-${ALPINE_VER}/"
fi
fi
python3 -m pip install "${PIP_ARGS}" \
python3 -m pip install ${PIP_ARGS} \
$(cat /mod-pip-packages-to-install.list)
fi