-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pathes
57 lines (55 loc) · 1.63 KB
/
.pathes
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Android
if [ -d "$HOME/Workspace/adt/sdk/" ] ; then
export PATH=$PATH:$HOME/Workspace/adt/sdk/platform-tools:$HOME/Workspace/adt/sdk/tools
fi
if [ -d "/Applications/Android Studio.app/sdk" ] ; then
export ANDROID_HOME="/Applications/Android Studio.app/sdk"
export PATH="$ANDROID_HOME:$PATH"
fi
# Heroku
if [ -d "/usr/local/heroku/bin" ] ; then
export PATH="/usr/local/heroku/bin:$PATH"
fi
# Golang
if [ -d "$HOME/Workspace/Go" ] ; then
export GOPATH="$HOME/Workspace/Go"
export GOROOT="/usr/local/go"
fi
# HOMEBREW
if [ -d "/usr/local/bin/php" ] ; then
export PATH="/usr/local/bin:$PATH"
fi
# LIIP's PHP
#if [ -d "/usr/local/php5/bin" ] ; then
# #Warning : liip's php-osx already includes pg_* commands
# export PATH="/usr/local/php5/bin:$PATH"
#fi
# PHP's Composer
if [ -d "$HOME/.composer/vendor/bin" ] ; then
export PATH="$HOME/.composer/vendor/bin:$PATH"
fi
# Ruby
if [ -d "$HOME/.rvm/bin" ] ; then
export PATH="$HOME/.rvm/bin:$PATH"
fi
# Postgresql 9.4
if [ -d "/Applications/Postgres.app/Contents/Versions/9.4/bin" ] ; then
export PATH="/Applications/Postgres.app/Contents/Versions/9.4/bin:$PATH"
fi
# Python 2.7 tools
if [ -d "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/bin" ] ; then
export PATH="/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/bin:$PATH"
fi
# Bins
if [ -d "/usr/local/sbin" ] ; then
export PATH="/usr/local/sbin:$PATH"
fi
if [ -d "$HOME/Bin" ] ; then
export PATH="$HOME/Bin:$PATH"
fi
if [ -d "$HOME/bin" ] ; then
export PATH="$HOME/bin:$PATH"
fi
if [ -d "$HOME/localBin" ] ; then
export PATH="$HOME/localBin:$PATH"
fi