Skip to content

Commit

Permalink
fix: wrong variable inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Jun 22, 2022
1 parent 6f54af5 commit f694542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/cli/command/MainCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ internal object MainCommand : Runnable {
Adb(outputFile, patcher.data.packageMetadata.packageName, args.deploy!!, !args.mount)
}

val patchedFile = if (args.mount) {
val patchedFile = if (!args.mount) {
File(args.cacheDirectory).resolve("${outputFile.nameWithoutExtension}_raw.apk")
} else outputFile

Expand Down

0 comments on commit f694542

Please sign in to comment.