mirror of
https://github.com/revanced/jadb.git
synced 2025-05-23 18:37:12 +02:00
Fix: PackageManager.remove() no longer calls Bash.quote() fixing remove of apk from device.
This commit is contained in:
parent
d782a754c7
commit
836f0bca1f
@ -44,7 +44,7 @@ public class PackageManager {
|
||||
}
|
||||
|
||||
private void remove(RemoteFile file) throws IOException, JadbException {
|
||||
InputStream s = device.executeShell("rm", "-f", Bash.quote(file.getPath()));
|
||||
InputStream s = device.executeShell("rm", "-f", file.getPath());
|
||||
Stream.readAll(s, StandardCharsets.UTF_8);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user