Skip to content

Commit d335846

Browse files
committed
fix: use absolute file path for key store
1 parent 6fc3ae6 commit d335846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/app/revanced/cli/command/MainCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ internal object MainCommand : Runnable {
113113
SigningOptions(
114114
args.cn,
115115
args.password,
116-
args.keystorePath ?: outputFile.parentFile
116+
args.keystorePath ?: outputFile.absoluteFile.parentFile
117117
.resolve("${outputFile.nameWithoutExtension}.keystore")
118118
.name
119119
)

0 commit comments

Comments
 (0)