refactor: fix consistency in logging

This commit is contained in:
Lucaskyy 2022-06-22 16:44:07 +02:00
parent 87ffaa4bdb
commit 46056956fe
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89

View File

@ -55,7 +55,7 @@ internal class Signer(
// TODO: keystore should be saved securely
val ks = File(signingOptions.keyStoreFilePath)
if (!ks.exists()) newKeystore(ks) else {
println("found existing keystore: ${ks.nameWithoutExtension}")
println("[found] existing keystore: ${ks.nameWithoutExtension}")
}
val keyStore = KeyStore.getInstance("BKS", "BC")