-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have apply-error-prone-suggestions.sh
download JitPack-hosted artifacts
#441
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This fix has downsides of its own: it overrides the user's The alternative is to move the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Based on Setting up multiple repositories (esp. the order) and Using mirrors for repositories; as Picnic devs mirror everything anyway, could we instead just place To my understanding, this would behave the same as that the super pom defines a repository to Maven central, which is always included too. |
||
-T 1.0C \ | ||
-Perror-prone \ | ||
-Perror-prone-fork \ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We no longer assume that the script is executed from the directory in which it resides.