We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 656b67f commit 0bf6d91Copy full SHA for 0bf6d91
.github/workflows/rpgxp-release.yml
@@ -132,9 +132,9 @@ jobs:
132
count_removed=0
133
for key in "${folder_order[@]}"; do
134
case "${folder_status[$key]}" in
135
- added) ((count_added++)) ;;
136
- modified) ((count_modified++)) ;;
137
- removed) ((count_removed++)) ;;
+ added) count_added=$((count_added + 1)) ;;
+ modified) count_modified=$((count_modified + 1)) ;;
+ removed) count_removed=$((count_removed + 1)) ;;
138
esac
139
done
140
0 commit comments