From: Jay Freeman (saurik) Date: Mon, 27 Oct 2014 10:02:29 +0000 (-0700) Subject: Delete the now-obsolete cache folder in /var/root. X-Git-Tag: v1.1.14~28 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/00407aa95bc3db374611046f1e7414497345df2b Delete the now-obsolete cache folder in /var/root. --- diff --git a/postinst.mm b/postinst.mm index bbef4c8a..d96d624c 100644 --- a/postinst.mm +++ b/postinst.mm @@ -168,6 +168,10 @@ int main(int argc, const char *argv[]) { CydiaWriteSources(); + #define OldCache_ "/var/root/Library/Caches/com.saurik.Cydia" + if (access(OldCache_, F_OK) == 0) + system("rm -rf " OldCache_); + FixPermissions(); if (FixApplications())