]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zprofile/00_path

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix compilation globs
[etc/zsh.git] / .zsh / zprofile / 00_path
1 # zprofile/00_path
2 #
3 # Adds custom directories to the $PATH
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 __prepend_dir_to_path()
12 {
13   for dir; do
14     case "$PATH" in
15       "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
16       *) test -d "$dir" && path=("$dir" $path);;
17     esac
18   done
19 }
20
21 __append_dir_to_path()
22 {
23   for dir; do
24     case "$PATH" in
25       "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
26       *) test -d "$dir" && path+="$dir";;
27     esac
28   done
29 }
30
31 __prepend_dir_to_path $BINDIR
32 __append_dir_to_path /usr/lib/surfraw
33
34 # vim:ft=zsh