Reputation: 689
I am trying to run this command:
$heroku logs
I am receiving following error:
[Error]: Please update your Heroku client to the most recent version
Can someone please help me solve the issue?
Thanks!
Upvotes: 6
Views: 1430
Reputation: 441
Please uninstall your old Heroku version and install latest.
gem install heroku --version 3.30.3
Upvotes: 1
Reputation: 9886
If you just want to update the heroku command-line client, you can type
heroku update
at the heroku command line.
Upvotes: 5
Reputation: 115541
You simply have an old version of the heroku
gem. Just install the latest from your command line:
gem install heroku --version 2.3.3
Upvotes: 9