summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/01_path
blob: daa2511e41bddc8706403fbe8946a3fa8175d285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# zshenv/01_path
#
# Adds custom directories to the $PATH
#
# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: git://git.madduck.net/etc/zsh.git
#

__prepend_dir_to_path()
{
  local dir
  for dir; do
    case "$PATH" in
      "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
      *) test -d "$dir" && path=("$dir" $path);;
    esac
  done
}

__append_dir_to_path()
{
  local dir
  for dir; do
    case "$PATH" in
      "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
      *) test -d "$dir" && path+="$dir";;
    esac
  done
}

__prepend_dir_to_path $BINDIR
__append_dir_to_path $NIOS2NOMMUBINDIR
__append_dir_to_path $NIOS2MMUBINDIR

# vim:ft=zsh