X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=.zsh%2Fsourcedir;h=c7eb5cd1be8a611ab98aaaf948147e7f50425c38;hb=6aef4f4cbd4de6478e2cfa59621adfe104c7a497;hp=cd89e2cddb3538a5305abbee30a500892b55dfe9;hpb=c911aef3128f289dbf3a7c2f6bc92b9e6bed82f2;p=zsh.git diff --git a/.zsh/sourcedir b/.zsh/sourcedir index cd89e2c..c7eb5cd 100644 --- a/.zsh/sourcedir +++ b/.zsh/sourcedir @@ -1,3 +1,4 @@ +# -*- mode: sh -*- # sourcedir # # Defines helper function to source files in a directory @@ -5,22 +6,23 @@ # Copyright © 1994–2008 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # -# Source repository: http://git.madduck.net/v/etc/zsh.git +# Source repository: git://git.madduck.net/etc/zsh.git # . $ZDOTDIR/logging sourcedir() { if [ ! -d "$1" ]; then + error "no such directory: $1" return 1 fi - debug "sourcing directory ${1#$ZDOTDIR/}" - for f in "$1"/*(.N); do +# debug "sourcing directory ${1#$ZDOTDIR/}" + for f in "$1"/*(.N,@N); do case "$f" in - *~|*.bak|*.sw?|*.zwc|*.disabled) continue;; + *~|*.bak|*.old|*.sw?|*.zwc|*.disabled) continue;; esac - debug " sourcing file $f" - . "$f" +# debug " sourcing file $f" + source "$f" done }