From 7bdcf535dbbc92f66acfe72cb4c46cfbd4e49781 Mon Sep 17 00:00:00 2001 From: signedav Date: Wed, 2 Nov 2022 13:12:40 +0100 Subject: [PATCH] unzip all downloaded whls (including dependencies) --- scripts/package_pip_packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/package_pip_packages.sh b/scripts/package_pip_packages.sh index fdd4b9e..32c808b 100755 --- a/scripts/package_pip_packages.sh +++ b/scripts/package_pip_packages.sh @@ -20,8 +20,8 @@ for PACKAGE in ${PACKAGES[@]}; do mkdir -p temp #download the wheel pip download -v ${!PACKAGE:0:1}==${!PACKAGE:1:1} --only-binary :all: -d temp/ - #unpack the wheel - unzip -o temp/${!PACKAGE:0:1}*.whl -d $LIBS_DIR + #unpack all the wheels found (means including dependencies) + unzip -o "temp/*.whl" -d $LIBS_DIR #remove temp folder rm -r temp #set write rights to group (because qgis-plugin-ci needs it)