Skip to content

Commit

Permalink
Fix derp in signing task.
Browse files Browse the repository at this point in the history
  • Loading branch information
covers1624 committed Jan 6, 2024
1 parent 5eda7da commit b4954cf
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 @@ -144,7 +144,7 @@ tasks.register("signShadowJar") {
file(System.getenv("KEY_STORE_PROPS")).withReader {
def props = new Properties()
props.load(it)
args.addAll(props)
args.putAll(props)
}
} else if (project.hasProperty('keyStore')) {
args['keyStore'] = project.getProperty('keyStore')
Expand Down

0 comments on commit b4954cf

Please sign in to comment.