]> git.saurik.com Git - cydia.git/blobdiff - Library/startup
Display the size of the output package after dpkg-deb.
[cydia.git] / Library / startup
index 171b8edfb928bfda30349c62537ac37842d00fed..a51843b89173360fa7186611d6f703a831a5a849 100755 (executable)
@@ -1,8 +1,20 @@
 #!/bin/bash
+
 export PATH=$PATH:/usr/sbin:/usr/bin:/sbin:/bin
+
+if [[ ! -e /var/lib/cydia/firmware.ver ]]; then
+    cache=
+fi
+
 /usr/libexec/cydia/firmware.sh
+
 debs=(/var/root/Media/Cydia/AutoInstall/*.deb)
 if [[ ${#debs[@]} -ne 0 && -f ${debs[0]} ]]; then
     dpkg -i "${debs[@]}"
     rm -f "${debs[@]}"
+    cache=
+fi
+
+if [[ ${cache+@} ]]; then
+    su -c uicache mobile
 fi