CommonInstaller: fix storing recovery.log after installation

merge-requests/23/head
Christopher Roy Bratusek 6 years ago
parent 71c9b70233
commit 71ae31c9da

@ -6,6 +6,7 @@
* CommonInstaller
* fix magisk.img handling when an installation error occurs
* fix storing recovery.log in /data/adb/ after installation
* Full Package
* MPV build from 16.3 crashed on x86_64 and arm64, fixed build included

@ -328,6 +328,7 @@ nanodroid_finalize () {
ui_print " "
sync
nanodroid_storelogs
if ! ${BOOTMODE} ; then
@ -1067,7 +1068,7 @@ echo "
cat "${cfg_overlay}" >> /data/adb/.nanodroid_${MODID}
${BOOTMODE} || cp /tmp/recovery.log /data/adb/.recovery_${MODID}
${BOOTMODE} || cat /tmp/recovery.log > /data/adb/.recovery_${MODID}
}
##########################################################################################

Loading…
Cancel
Save