From 4cfa3e5b08fdefca9a9f14df6b5ab8c8ea6d4e99 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 30 Oct 2014 03:39:21 -0700 Subject: [PATCH] Move Caches creation outside of file conditionals. --- postinst.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postinst.mm b/postinst.mm index 10988bb7..d837d7bd 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"); } -- 2.50.0