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 cd2c2e6 commit ee8b9f0Copy full SHA for ee8b9f0
scripts/internal/manylinux-build-module-wheels.sh
@@ -56,6 +56,8 @@ if test "${ARCH}" == "x64"; then
56
rm ${whl}
57
done
58
fi
59
-for itk_wheel in dist/itk*-linux*.whl; do
60
- mv ${itk_wheel} ${itk_wheel/linux/manylinux2014}
61
-done
+if compgen -G "dist/itk*-linux*.whl" > /dev/null; then
+ for itk_wheel in dist/itk*-linux*.whl; do
+ mv ${itk_wheel} ${itk_wheel/linux/manylinux2014}
62
+ done
63
+fi
0 commit comments