fix: use absolute file path for key store

This commit is contained in:
oSumAtrIX 2022-06-22 15:57:15 +02:00
parent 6fc3ae67c8
commit d335846202
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ internal object MainCommand : Runnable {
SigningOptions(
args.cn,
args.password,
args.keystorePath ?: outputFile.parentFile
args.keystorePath ?: outputFile.absoluteFile.parentFile
.resolve("${outputFile.nameWithoutExtension}.keystore")
.name
)