From a22eab3067785fe52c5b9720e74da54721328f4b Mon Sep 17 00:00:00 2001 From: Frank Yang Date: Mon, 15 Apr 2019 18:26:57 +0800 Subject: [PATCH 1/2] Fix empty path in `Install Go`. --- docs/cosmos-hub/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cosmos-hub/installation.md b/docs/cosmos-hub/installation.md index 48f0f71a7492..20e5ffa44a84 100644 --- a/docs/cosmos-hub/installation.md +++ b/docs/cosmos-hub/installation.md @@ -9,8 +9,8 @@ Install `go` by following the [official docs](https://golang.org/doc/install). R ```bash mkdir -p $HOME/go/bin echo "export GOPATH=$HOME/go" >> ~/.bash_profile -echo "export GOBIN=$GOPATH/bin" >> ~/.bash_profile -echo "export PATH=$PATH:$GOBIN" >> ~/.bash_profile +echo "export GOBIN=\$GOPATH/bin" >> ~/.bash_profile +echo "export PATH=\$PATH:\$GOBIN" >> ~/.bash_profile source ~/.bash_profile ``` From af34f3dfc9387578d1a5a2f39acb3f9f9806c265 Mon Sep 17 00:00:00 2001 From: Frank Yang Date: Mon, 15 Apr 2019 18:33:31 +0800 Subject: [PATCH 2/2] Add pending --- .pending/bugfixes/gaia/4113-Fix-incorrect-G | 1 + 1 file changed, 1 insertion(+) create mode 100644 .pending/bugfixes/gaia/4113-Fix-incorrect-G diff --git a/.pending/bugfixes/gaia/4113-Fix-incorrect-G b/.pending/bugfixes/gaia/4113-Fix-incorrect-G new file mode 100644 index 000000000000..2a5d1680b7cb --- /dev/null +++ b/.pending/bugfixes/gaia/4113-Fix-incorrect-G @@ -0,0 +1 @@ +#4113 Fix incorrect `$GOBIN` in `Install Go` \ No newline at end of file