Fix: PackageManager.remove() no longer calls Bash.quote() fixing remove of apk from device.

This commit is contained in:
jevalen4868 2018-09-19 19:29:20 -05:00
parent d782a754c7
commit 836f0bca1f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}