You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
2 years ago
|
# go path
|
||
|
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
|
||
|
|
||
|
# add local paths
|
||
|
if [ -d $HOME/bin ] ; then
|
||
|
export PATH=$PATH:$HOME/bin
|
||
|
fi
|
||
|
|
||
|
if [ -d $HOME/.local/bin ] ; then
|
||
|
export PATH=$PATH:$HOME/.local/bin
|
||
|
fi
|
||
|
|