Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I disable annoying heroku cli "submit user experience" prompt?

Setting up a new machine, I installed latest Heroku Toolbelt.

Seems now, whensoever I run any heroku command I first get asked:

Would you like to submit Heroku CLI usage information to better improve the CLI
user experience?
[y/N]

Is there a way I can permanently disable this?

Thanks in advance.

like image 667
stephensong Avatar asked Jan 20 '16 01:01

stephensong


1 Answers

Adding file ~/.heroku/config.json with the following content worked for me on Ubuntu. Good luck!

{
  "skip_analytics": true
}
like image 199
Weston Avatar answered Oct 15 '22 06:10

Weston