| maxwen | 38db585 | 2018-01-02 22:54:58 +0100 | [diff] [blame] | 1 | #!/sbin/sh |
| 2 | # | ||||
| 3 | # /system/bin/clean_cache.sh | ||||
| 4 | # During a firmware upgrade, this script deletes cache files | ||||
| 5 | # in /data/system/package_cache/* | ||||
| 6 | # | ||||
| 7 | |||||
| 8 | if [ -d /data/system/package_cache/ ]; then | ||||
| 9 | rm -fr /data/system/package_cache/* | ||||
| 10 | fi | ||||