22 lines
383 B
Bash
Executable File
22 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH=$PATH:/usr/sbin:/usr/bin:/sbin:/bin
|
|
sbdidlaunch
|
|
|
|
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
|