Skip to content

Commit

Permalink
unzip all downloaded whls (including dependencies)
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Nov 2, 2022
1 parent 2335a4a commit 7bdcf53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/package_pip_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7bdcf53

Please sign in to comment.