Merge pull request #1273 from ystein/master

Typo in cd-wrapper
This commit is contained in:
Robby Russell 2012-12-04 06:36:45 -08:00
commit 421a738b49
1 changed files with 2 additions and 2 deletions

View File

@ -26,9 +26,9 @@ cd () {
elif [[ "x$*" == "x...." ]]; then
cd ../../..
elif [[ "x$*" == "x....." ]]; then
cd ../../..
elif [[ "x$*" == "x......" ]]; then
cd ../../../..
elif [[ "x$*" == "x......" ]]; then
cd ../../../../..
else
builtin cd "$@"
fi