fix pillow wheel filename case in workflow

This commit is contained in:
2025-09-09 08:12:44 +02:00
parent eebc742920
commit f21d9a14a7
+2 -2
View File
@@ -96,8 +96,8 @@ jobs:
run: |
echo "Checking for wheels directory..."
ls -l wheels
if [ ! -f wheels/Pillow-*.whl ]; then
echo "ERROR: Pillow wheel not found after download!"
if [ ! -f wheels/pillow-*.whl ]; then
echo "ERROR: pillow wheel not found after download!"
exit 1
fi