Rails tutorial 1章でheroku loginできない時[Cloud9]


Herokuインストールできてるのにloginできない!

cloud9にてherokuインストールしてるのに、heroku loginコマンドが使えなく何日もググっては試すを繰り返していた。

そしてどうやらCLIが古いバージョンになっているのが原因みたい、、、
```
See more details with DEBUG=*
› Warning: heroku-cli update available from 7.0.9 to
› 7.18.9
CLI to interact with Heroku

VERSION
heroku-cli/7.0.9 linux-x64 node-v8.3.0
```

⇒heroku updateでもCLIがupdateされなかった。

解決

:~/environment/hello_app (master) $ heroku plugins
no plugins installed

⇒CLIのpluginが何もないのが原因だった。

:~/environment/hello_app (master) $ heroku plugins:install heroku-repo

⇒これでCLIがアップデートされて、loginできるようになった!