Skip to content

Commit

Permalink
🐛 Fixed signing input/output file
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCrayfish committed Jun 22, 2023
1 parent 78a873c commit 5b902eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ task signJar(type: SignJar, dependsOn: jar) {
keyStore = project.findProperty('keyStore') ?: System.getenv("KEYSTORE")
alias = project.findProperty('keyStoreAlias') ?: System.getenv("KEYSTORE_ALIAS")
storePass = project.findProperty('keyStorePass') ?: System.getenv("KEYSTORE_PASS")
inputFile = outputFile = tasks.jarJar.archiveFile
inputFile = outputFile = jar.archiveFile
}

jar.finalizedBy 'signJar'
Expand Down

0 comments on commit 5b902eb

Please sign in to comment.