UNPKG

421 BJavaScriptView Raw
1'use strict'
2
3let cli = require('heroku-cli-util')
4let co = require('co')
5
6function * run () {
7 cli.error(`orgs:default is no longer in the CLI.
8Use the HEROKU_ORGANIZATION environment variable instead.
9See ${cli.color.cyan('https://devcenter.heroku.com/articles/develop-orgs#default-org')} for more info.`)
10}
11
12module.exports = {
13 topic: 'orgs',
14 command: 'default',
15 hidden: true,
16 run: cli.command(co.wrap(run))
17}