We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95256a1 commit 7ce78b7Copy full SHA for 7ce78b7
1 file changed
src/main/kotlin/app/revanced/cli/command/utility/InstallCommand.kt
@@ -31,7 +31,7 @@ internal object InstallCommand : Runnable {
31
32
@Option(
33
names = ["-m", "--mount"],
34
- description = ["Mount the supplied APK file over the app with the given package name."],
+ description = ["Mount the supplied APK file over the app with the supplied package name."],
35
)
36
private var packageName: String? = null
37
@@ -58,7 +58,7 @@ internal object InstallCommand : Runnable {
58
AdbInstallerResult.Success ->
59
logger.info("Installed the APK file")
60
is AdbInstallerResult.Failure -> {
61
- logger.severe(result.exception.toString())
+ logger.severe("Failed to install the APK file: ${result.exception}")
62
throw Exception()
63
}
64
else -> {
0 commit comments