From 4cfa3e5b08fdefca9a9f14df6b5ab8c8ea6d4e99 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 30 Oct 2014 03:39:21 -0700 Subject: Move Caches creation outside of file conditionals. --- postinst.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'postinst.mm') diff --git a/postinst.mm b/postinst.mm index 10988bb..d837d7b 100644 --- a/postinst.mm +++ b/postinst.mm @@ -173,8 +173,9 @@ int main(int argc, const char *argv[]) { system("rm -rf " OldCache_); #define NewCache_ "/var/mobile/Library/Caches/com.saurik.Cydia" + system("cd /; su -c 'mkdir -p " NewCache_ "' mobile"); + if (access(NewCache_ "/lists", F_OK) != 0 && errno == ENOENT) { - system("cd /; su -c 'mkdir -p " NewCache_ "' mobile"); system("cp -at " NewCache_ " /var/lib/apt/lists"); system("chown -R 501.501 " NewCache_ "/lists"); } -- cgit v1.2.3