Skip to content

Commit 73f2977

Browse files
committed
fix: Use POSIX-compliant arithmetic syntax in JAR filtering
Change from ((EXCLUSION_COUNT++)) to EXCLUSION_COUNT=$((EXCLUSION_COUNT + 1)) for better shell compatibility in GitHub Actions.
1 parent 3cdf64c commit 73f2977

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build-python-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
if [[ -f "$jar" ]]; then
7979
rm -f "$jar"
8080
echo " - Removed: $(basename "$jar")"
81-
((EXCLUSION_COUNT++))
81+
EXCLUSION_COUNT=$((EXCLUSION_COUNT + 1))
8282
fi
8383
done
8484
fi

0 commit comments

Comments
 (0)