Heroku trouble - uninstall/reinstall heroku toolbelt ubuntu

泄露秘密 提交于 2019-12-04 14:55:27
MandM

Ugh - figured it out. After inspecting the shell script that is downloaded, I saw that it ends up running the command

sudo apt-get install heroku-toolbelt

So I ended up having to remove the heroku and heroku-toolbelt packages with apt-get by running

sudo apt-get --purge remove heroku
sudo apt-get --purge remove heroku-toolbelt

And then reinstalling the toolbelt with

wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh

And now everything seems to be playing nice again.

I just want to add that if you had heroku-accounts plugin, you also need to check ~/.gitconfig file for old account entries presence and delete them. Otherwise fresh installation of both toolbelt and accounts plugin will lead to completely not working environment.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!