@eht16 commented on this pull request.
In scripts/ci_mingw64_geany.sh:
> - if [ -z "${PATCH}" ] || [ "${PATCH}" = "0" ]; then - MINOR="$((MINOR-1))" - PATCH="90" + if [[ "${MINOR}" = "0" && (-z "${PATCH}" || "${PATCH}" = "0") ]]; then + MAJOR="$((MAJOR-1))" + MINOR="99" + PATCH="99" else - PATCH="$((PATCH-1))" + if [[ -z "${PATCH}" || "${PATCH}" = "0" ]]; then + MINOR="$((MINOR-1))" + PATCH="99" + else + PATCH="$((PATCH-1))" + fi fi
Sweet, thank you.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.