diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-07-11 23:18:30 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:06 +0000 |
commit | aa5e5990e17da617b0e95c962e86924bc9b99b50 (patch) | |
tree | 95410c0b8ebee371ceae2140846b5926ebc4665b /Library/move.sh | |
parent | a30c20bd2fa64ce4459d95d39d64b729563ed289 (diff) |
Stash folders were supposed to be named, added support for Pwnage 2.0, bootup sysctl -w hack, just deleting the stupid package caches, and resurrected some of the Source editor.
Diffstat (limited to 'Library/move.sh')
-rwxr-xr-x | Library/move.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/move.sh b/Library/move.sh index f264dcd..0b9e09d 100755 --- a/Library/move.sh +++ b/Library/move.sh @@ -14,7 +14,7 @@ function mv_() { src=$1 mkdir -p /var/stash - dst=$(mktemp -d /var/stash/$(basename "${dir}").XXXXXX) + dst=$(mktemp -d /var/stash/$(basename "${src}").XXXXXX) if [[ -e ${src} ]]; then chmod --reference="${src}" "${dst}" |