From e3799a2e08946d914e75ae16d8286868660ba862 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 29 Oct 2014 22:22:47 -0700 Subject: Migrate the user's legacy APT lists to new Caches. --- postinst.mm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'postinst.mm') diff --git a/postinst.mm b/postinst.mm index d96d624..7c2fb68 100644 --- a/postinst.mm +++ b/postinst.mm @@ -172,6 +172,13 @@ int main(int argc, const char *argv[]) { if (access(OldCache_, F_OK) == 0) system("rm -rf " OldCache_); + #define NewCache_ "/var/mobile/Library/Caches/com.saurik.Cydia" + if (access(NewCache_ "/lists", F_OK) != 0 && errno == ENOENT) { + system("su -c 'mkdir -p " NewCache_ "' mobile"); + system("cp -at " NewCache_ " /var/lib/apt/lists"); + system("chown -R 501.501 " NewCache_ "/lists"); + } + FixPermissions(); if (FixApplications()) -- cgit v1.2.3