gvm で go1.5.3 をインストール

$ gvm install go1.5.3
Installing go1.5.3...
 * Compiling...
ERROR: Failed to compile. Check the logs at /Users/***/.gvm/logs/go-go1.5.3-compile.log
ERROR: Failed to use installed version
$ cat /Users/***/.gvm/logs/go-go1.5.3-compile.log
##### Building Go bootstrap tool.
cmd/dist
ERROR: Cannot find /Users/***/go1.4/bin/go.
Set $GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4.
./make.bash: line 121: /Users/***/go1.4/bin/go: No such file or directory

わけわかめ

ググってると、以下のHPが
https://github.com/moovweb/gvm/issues/155

$ gvm install go1.4
$ gvm use go1.4
$ export GOROOT_BOOTSTRAP=$GOROOT
$ gvm install go1.5.3

すでに、1.4はあるのでexportから実行。

すんなりインストール完了。
ありがたやぁ。