Skip to content

Commit

Permalink
other debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Niko Stotz committed Nov 7, 2023
1 parent 2e727f1 commit 4693f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ signing {
}
val signingKey: String? = System.getenv("SIGNING_KEY")
val signingPassword: String? = System.getenv("SIGNING_PASSWORD")
println("key is null: ${signingKey == null} pwd is null: ${signingPassword == null}")
println("key is null: ${signingKey?.length} pwd is null: ${signingPassword?.length}")
if (signingKey != null && signingPassword != null) {
useInMemoryPgpKeys(signingKey, signingPassword)
}
Expand Down

0 comments on commit 4693f93

Please sign in to comment.