diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2012-03-07 00:02:22 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2012-03-07 00:02:22 -0800 |
commit | 76fb4bac75db0388e8e171ce8562dc1fdd6e6976 (patch) | |
tree | 69321a913ec30e4655f82076c5530c2a0af97c59 /Library/startup | |
parent | d1c7f1fd95448c4e6aee4ff164f7ff47f5d41255 (diff) |
Output the dpkg auto-install process to a log file.
Diffstat (limited to 'Library/startup')
-rwxr-xr-x | Library/startup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/startup b/Library/startup index 368cacc..9321198 100755 --- a/Library/startup +++ b/Library/startup @@ -10,7 +10,7 @@ fi debs=(/var/root/Media/Cydia/AutoInstall/*.deb) if [[ ${#debs[@]} -ne 0 && -f ${debs[0]} ]]; then - dpkg -i "${debs[@]}" + dpkg -i "${debs[@]}" 2>/tmp/dpkg.log 1>&2 rm -f "${debs[@]}" cache= |