File tree 1 file changed +2
-2
lines changed
src/main/kotlin/app/revanced/cli/command
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ internal object PatchCommand : Runnable {
173
173
if (! apk.exists()) {
174
174
throw CommandLine .ParameterException (
175
175
spec.commandLine(),
176
- " APK file ${apk.name } does not exist" ,
176
+ " APK file ${apk.path } does not exist" ,
177
177
)
178
178
}
179
179
this .apk = apk
@@ -186,7 +186,7 @@ internal object PatchCommand : Runnable {
186
186
@Suppress(" unused" )
187
187
private fun setIntegrations (integrations : Array <File >) {
188
188
integrations.firstOrNull { ! it.exists() }?.let {
189
- throw CommandLine .ParameterException (spec.commandLine(), " Integrations file ${it.name } does not exist." )
189
+ throw CommandLine .ParameterException (spec.commandLine(), " Integrations file ${it.path } does not exist." )
190
190
}
191
191
this .integrations + = integrations
192
192
}
You can’t perform that action at this time.
0 commit comments