Export MAGISKTMP so it survives exec

Fix #2926
This commit is contained in:
topjohnwu 2020-06-29 03:24:53 -07:00
parent 6dbd9bfb12
commit b1e0c5ff38

View File

@ -18,9 +18,9 @@ class RootInit : Shell.Initializer() {
fun init(context: Context, shell: Shell): Boolean {
shell.newJob().apply {
if (Const.Version.atLeast_20_4()) {
add("MAGISKTMP=$(magisk --path)/.magisk")
add("export MAGISKTMP=$(magisk --path)/.magisk")
} else {
add("MAGISKTMP=/sbin/.magisk")
add("export MAGISKTMP=/sbin/.magisk")
}
if (Const.Version.atLeastCanary()) {
add("export ASH_STANDALONE=1")