blob: ef41549590d4661e9e0a2c10f2de9d46af892b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# Add directories to the PATH and prevent to add the same directory multiple times upon shell reload.
add_to_path() {
if [[ -d "$1" ]] && [[ ":$PATH:" != *":$1:"* ]]; then
export PATH="$1:$PATH"
fi
}
# Add ghq to PATH
add_to_path "$GOPATH/bin"
add_to_path "/Library/Frameworks/Firebird.framework/Resources/bin"
|