MacOSを EI CapitanからHigh Sierraにアップデートしたらherokuコマンドでエラーが出るようになってしまいました。
$ heroku config
▸ stat /Users/username/.local/share/heroku/client/bin/heroku: not a directory
▸ fork/exec /Users/username/.local/share/heroku/client/bin/heroku: not a directory
▸ stat /Users/username/.local/share/heroku/client/bin/heroku: not a directory
▸ fork/exec /Users/username/.local/share/heroku/client/bin/heroku: not a directory
調べて見たらどうやらCLIをuninstall & updateが必要みたいです。
解決策
$ rm -rf ~/.local/share/heroku/client
$ heroku update
参考
https://devcenter.heroku.com/articles/heroku-cli#uninstalling-the-heroku-cli
https://github.com/heroku/cli/issues/427