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)