Fix repackage manager settings migration

This commit is contained in:
topjohnwu
2019-03-11 05:43:48 -04:00
parent 5111086637
commit ed11e0bff6
5 changed files with 13 additions and 18 deletions
@@ -73,7 +73,7 @@ public abstract class MagiskInstaller {
public MagiskInstaller(List<String> out, List<String> err) {
console = out;
logs = err;
installDir = new File(Utils.getDEContext().getFilesDir().getParent(), "install");
installDir = new File(App.deContext.getFilesDir().getParent(), "install");
Shell.sh("rm -rf " + installDir).exec();
installDir.mkdirs();
}