Some minor fixes

This commit is contained in:
Alexander Gehrke 2013-05-16 13:14:41 +02:00
parent 9e8334698c
commit 0ddc13eaeb
3 changed files with 9 additions and 5 deletions

View file

@ -44,11 +44,11 @@ aliases() {
# per directory configuration
cd(){
if [ -e ".zout" ]; then
. ".zout"
. "./.zout"
fi
builtin cd $*
if [ -e ".zin" ]; then
. ".zin"
. "./.zin"
fi
}