add explicit GOPATH and GOBIN. change PATH to use GOBIN.
parent
67a4f60ebb
commit
25ab87b85a
4
.bashrc
4
.bashrc
|
@ -30,7 +30,9 @@ fi
|
||||||
export PAGER
|
export PAGER
|
||||||
DELTA_PAGER=less; export DELTA_PAGER
|
DELTA_PAGER=less; export DELTA_PAGER
|
||||||
|
|
||||||
PATH=$HOME/.local/bin:$HOME/.cargo/bin:$HOME/go/bin:${KREW_ROOT:-$HOME/.krew}/bin:$PATH
|
GOPATH=$HOME/go; export GOPATH
|
||||||
|
GOBIN=$GOPATH/bin; export GOBIN
|
||||||
|
PATH=$HOME/.local/bin:$HOME/.cargo/bin:$GOBIN:${KREW_ROOT:-$HOME/.krew}/bin:$PATH
|
||||||
|
|
||||||
# don't put duplicate lines or lines starting with space in the history.
|
# don't put duplicate lines or lines starting with space in the history.
|
||||||
# See bash(1) for more options
|
# See bash(1) for more options
|
||||||
|
|
Reference in New Issue