diff --git a/conf/defconf-minimal.txt b/conf/defconf-minimal.txt index fc58627..0d36026 100644 --- a/conf/defconf-minimal.txt +++ b/conf/defconf-minimal.txt @@ -180,14 +180,13 @@ post_install_actions() { pre_uninstall_actions() { - [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $addond_file $init_file"; + [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $mark_file $addond_file $init_file"; return 0; } post_uninstall_actions() { - rm -rf "$root/$mark_file"; return 0; } diff --git a/conf/defconf-minimaliap.txt b/conf/defconf-minimaliap.txt index e72a87d..4779cf6 100644 --- a/conf/defconf-minimaliap.txt +++ b/conf/defconf-minimaliap.txt @@ -180,14 +180,13 @@ post_install_actions() { pre_uninstall_actions() { - [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $addond_file $init_file"; + [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $mark_file $addond_file $init_file"; return 0; } post_uninstall_actions() { - rm -rf "$root/$mark_file"; return 0; } diff --git a/conf/defconf-nogoolag.txt b/conf/defconf-nogoolag.txt index ff8f599..05e4ad7 100644 --- a/conf/defconf-nogoolag.txt +++ b/conf/defconf-nogoolag.txt @@ -189,14 +189,13 @@ post_install_actions() { pre_uninstall_actions() { - [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $addond_file $init_file"; + [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $mark_file $addond_file $init_file"; return 0; } post_uninstall_actions() { - rm -rf "$root/$mark_file"; return 0; } diff --git a/conf/defconf-standard.txt b/conf/defconf-standard.txt index 4e1eac2..ff6715f 100644 --- a/conf/defconf-standard.txt +++ b/conf/defconf-standard.txt @@ -195,14 +195,13 @@ post_install_actions() { pre_uninstall_actions() { - [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $addond_file $init_file"; + [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $mark_file $addond_file $init_file"; return 0; } post_uninstall_actions() { - rm -rf "$root/$mark_file"; return 0; } diff --git a/conf/defconf-unlp.txt b/conf/defconf-unlp.txt index 10aaf0d..c2180bc 100644 --- a/conf/defconf-unlp.txt +++ b/conf/defconf-unlp.txt @@ -163,14 +163,13 @@ post_install_actions() { pre_uninstall_actions() { - [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $addond_file $init_file"; + [ "$magisk" = "no" ] && stuff_uninstall="$stuff_uninstall $mark_file $addond_file $init_file"; return 0; } post_uninstall_actions() { - rm -rf "$root/$mark_file"; return 0; }