glideでlogrusのインストールエラー対応

glideでgorm入れようとしたら突然logrusのエラーが。。。

[ERROR]	Update failed for github.com/Sirupsen/logrus: The Remote does not match the VCS endpoint
[ERROR]	Could not update packages: The Remote does not match the VCS endpoint

意味わからんけど以下対応したら入った

$ rm -rf vendor
$ rm -rf ~/.glide
$ rm glide.lock

glide.yaml

github.com/sirupsen/logrus を
github.com/Sirupsen/logrus に変更

で、以下を実行

$ glide get github.com/jinzhu/gorm

以上です