Skip to content

Commit

Permalink
Have apply-error-prone-suggestions.sh download Jitpack-hosted artif…
Browse files Browse the repository at this point in the history
…acts

While there, tweak the usage message of both `apply-error-prone-suggestions.sh`
and `run-mutation-tests.sh`.
  • Loading branch information
Stephan202 authored and rickie committed Jan 5, 2023
1 parent 1ed1e6c commit 82a929f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apply-error-prone-suggestions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
set -e -u -o pipefail

if [ "${#}" -gt 1 ]; then
echo "Usage: ./$(basename "${0}") [PatchChecks]"
echo "Usage: ${0} [PatchChecks]"
exit 1
fi

patchChecks=${1:-}

mvn clean test-compile fmt:format \
-s "$(dirname "${0}")/settings.xml" \
-T 1.0C \
-Perror-prone \
-Perror-prone-fork \
Expand Down
2 changes: 1 addition & 1 deletion run-mutation-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -e -u -o pipefail

if [ "${#}" -gt 1 ]; then
echo "Usage: ./$(basename "${0}") [TargetTests]"
echo "Usage: ${0} [TargetTests]"
exit 1
fi

Expand Down

0 comments on commit 82a929f

Please sign in to comment.