Skip to content

Commit

Permalink
fix: Correct warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Oct 8, 2023
1 parent e95a392 commit ba573f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ internal object PatchCommand : Runnable {
"$patchName is incompatible with version $packageVersion. "
+ "This patch is only compatible with version "
+ packages.joinToString(";") { pkg ->
"${pkg.name}: ${pkg.versions!!.joinToString(", ")}"
pkg.versions!!.joinToString(", ")
}
)
} ?: return@patch logger.fine(
Expand Down

0 comments on commit ba573f7

Please sign in to comment.