diff options
author | Jay Freeman <saurik@saurik.com> | 2008-02-25 10:36:07 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-02-25 10:36:07 +0000 |
commit | ef1e884f98c5a826ac36c4d6a24938f448c539df (patch) | |
tree | 62bbd81ddfdd7c6d5264d8ef415d262b83c2bf19 /over/usr/libexec/cydia_/install.sh | |
parent | 31487aa2ee9c1a1f1804ff760af5227f5fd78812 (diff) |
Temporary construction needs to be done using God Mode, and cp -T doesn't handle symlinks correctly (so let's use tar).
git-svn-id: http://svn.telesphoreo.org/trunk@98 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'over/usr/libexec/cydia_/install.sh')
-rwxr-xr-x | over/usr/libexec/cydia_/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/over/usr/libexec/cydia_/install.sh b/over/usr/libexec/cydia_/install.sh index 0e5d92535..bce209557 100755 --- a/over/usr/libexec/cydia_/install.sh +++ b/over/usr/libexec/cydia_/install.sh @@ -27,7 +27,7 @@ do if [[ -d ${dir} && ! -h ${dir} ]]; then new=/var/${base} if [[ -e ${new} ]]; then - new=$(mktemp -d cydia.XXXXXX) + new=$(godmode mktemp -d cydia.XXXXXX) fi godmode mv -T "${dir}" "${new}" |