summaryrefslogtreecommitdiff
path: root/pwnr
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-08-07 23:16:40 +0000
committerJay Freeman <saurik@saurik.com>2008-08-07 23:16:40 +0000
commit3bee6ba40ac63ff96495d84cfccb26e02c27427d (patch)
tree066678030ae251a3b2a39e0da90275bdaa5af2c0 /pwnr
parent71ec28cbbe345ac91fc815fa4e550ce90917d0d9 (diff)
Fixing a simple bug.
git-svn-id: http://svn.telesphoreo.org/trunk@420 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'pwnr')
-rwxr-xr-xpwnr/space.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pwnr/space.sh b/pwnr/space.sh
index 8556ae1cb..fc90f2599 100755
--- a/pwnr/space.sh
+++ b/pwnr/space.sh
@@ -5,7 +5,7 @@ function stash() {
src=$1
dst=var/stash/${src##*/}
mv "${src}" "${dst}"
- dst=${src//+([a-z])/..}/${dst}
+ dst=${src//+([A-Za-z])/..}/${dst}
ln -s "${dst#../}" "${src}"
}