From fdcc2e949fa5c5d772ef77031e1bb17e976b6f16 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Fri, 9 Jun 2017 16:45:35 -0500 Subject: [PATCH] Fix env var name for deprecated INTEGRATION_ID --- bin/probot-run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/probot-run.js b/bin/probot-run.js index 258fc85d..12c506c6 100755 --- a/bin/probot-run.js +++ b/bin/probot-run.js @@ -9,7 +9,7 @@ const {findPrivateKey} = require('../lib/private-key'); program .usage('[options] ') - .option('-i, --integration ', 'DEPRECATED: ID of the GitHub App', process.env.APP_ID) + .option('-i, --integration ', 'DEPRECATED: ID of the GitHub App', process.env.INTEGRATION_ID) .option('-a, --app ', 'ID of the GitHub App', process.env.APP_ID) .option('-s, --secret ', 'Webhook secret of the GitHub App', process.env.WEBHOOK_SECRET || 'development') .option('-p, --port ', 'Port to start the server on', process.env.PORT || 3000)