picardo
picardo

Reputation: 24896

Heroku update says I don't have the toolbelt

I have a Rails project that is using heroku_san for deployment. I wanted to give heroku's new toolbelt a shot, so I installed it on my system, which is a Mac Os X, and ran heroku upgrade and I am getting this message:

heroku update is only available from Heroku Toolbelt.

Download and install from https://toolbelt.heroku.com

I already have it installed, though.

Upvotes: 3

Views: 231

Answers (1)

Sean Ahrens
Sean Ahrens

Reputation: 1025

The following steps worked for me:

  1. download and install toolbelt: https://toolbelt.heroku.com/
  2. in terminal, "gem uninstall heroku", and then choose "all versions" if you have multiple.

you mentioned you have a gem that depends on the heroku gem, so I'm not sure what to tell you besides to try to eliminate that dependency.

Upvotes: 2

Related Questions