Fix removal again

Signed-off-by: Ilya Danilkin <nezorflame@gmail.com>
This commit is contained in:
Ilya Danilkin
2020-11-06 02:10:49 +03:00
committed by Maarten Fonville
parent 227c33a6c7
commit 3901263dc6
+1 -1
View File
@@ -2557,7 +2557,7 @@ for aosp_name in $aosp_remove_list; do
eval "list_name=\$${aosp_name}_list"
list_name=$(echo "${list_name}" | sort -r) # reverse sort list for more readable output
for file_name in $list_name; do
rm -rf "/system/$file_name" "/system/product/$file_name"
rm -rf "/system/$file_name" "/system/product/$file_name" "/system/system_ext/$file_name"
sed -i "\:# Remove Stock/AOSP apps (from GApps Installer):a \ rm -rf \$SYS/$file_name" $bkup_tail
done
done