forked from mirrors/probot
Fix env var name for deprecated INTEGRATION_ID
This commit is contained in:
parent
7b28802eb6
commit
fdcc2e949f
|
@ -9,7 +9,7 @@ const {findPrivateKey} = require('../lib/private-key');
|
|||
|
||||
program
|
||||
.usage('[options] <plugins...>')
|
||||
.option('-i, --integration <id>', 'DEPRECATED: ID of the GitHub App', process.env.APP_ID)
|
||||
.option('-i, --integration <id>', 'DEPRECATED: ID of the GitHub App', process.env.INTEGRATION_ID)
|
||||
.option('-a, --app <id>', 'ID of the GitHub App', process.env.APP_ID)
|
||||
.option('-s, --secret <secret>', 'Webhook secret of the GitHub App', process.env.WEBHOOK_SECRET || 'development')
|
||||
.option('-p, --port <n>', 'Port to start the server on', process.env.PORT || 3000)
|
||||
|
|
Loading…
Reference in New Issue