-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Unable to run ./gradlew setup
with gpg.format
set to ssh
globally
#11
Comments
I've gone ahead and "PR'd" a fix to the JGit library that should mitigate this. |
dont we disable gpg signing? or does it fail just with the config set already? |
It fails on initialization of the Git repository. The |
A better workaround would probably be just to unset the |
The problem lies in the JGit library not supporting
ssh
as a valid option forgpg.format
. The only format they support is openpgp, but that's beside the point. Since they don't have SSH registered as a valid config value, it throws the below error../gradlew setup --stacktrace
outputWorkaround
setup
taskversions/<version>/src/main/java/
git config gpg.sign openpgp
setup
task againThe text was updated successfully, but these errors were encountered: