We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8009e commit 4fc1662Copy full SHA for 4fc1662
scripts/internal/manylinux-build-wheels.sh
@@ -153,8 +153,9 @@ for whl in dist/itk_*linux_$(uname -p).whl; do
153
/opt/python/cp37-cp37m/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
154
rm ${whl}
155
done
156
-itk_wheel=$(ls dist/itk-*linux*)
157
-mv ${itk_wheel} ${itk_wheel/linux/manylinux2014}
+for itk_wheel in dist/itk-*linux*.whl; do
+ mv ${itk_wheel} ${itk_wheel/linux/manylinux2014}
158
+done
159
160
# Install packages and test
161
for PYBIN in "${PYBINARIES[@]}"; do
0 commit comments