Skip to content

Commit

Permalink
Merge pull request rupa#148 from tomhoover/patch-1
Browse files Browse the repository at this point in the history
commit c507bdd broke zsh -- this fixes it
  • Loading branch information
rupa committed Feb 17, 2015
2 parents 588fbb9 + 054cf43 commit aec4df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion z.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ _z() {
# don't track excluded directory trees
local exclude
for exclude in "${_Z_EXCLUDE_DIRS[@]}"; do
case "$*" in $exclude*) return;; esac
case "$*" in "$exclude*") return;; esac
done

# maintain the data file
Expand Down

0 comments on commit aec4df7

Please sign in to comment.