From 5fc50cac297a281ad01871b3f8727a405136afb4 Mon Sep 17 00:00:00 2001 From: misamoo Date: Thu, 30 Dec 2021 22:09:37 +0100 Subject: [PATCH] Ericsciple patch 1 (#2) * Update main.ts * . Co-authored-by: eric sciple --- dist/index.js | 1 + src/main.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/dist/index.js b/dist/index.js index 8542f7d..e414a68 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4153,6 +4153,7 @@ function run() { try { // Register problem matcher coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json')); + console.log(JSON.stringify(process.env, null, ' ')); // Get sources yield gitSourceProvider.getSource(sourceSettings); } diff --git a/src/main.ts b/src/main.ts index 97a27af..70a4473 100644 --- a/src/main.ts +++ b/src/main.ts @@ -16,6 +16,8 @@ async function run(): Promise { {}, path.join(__dirname, 'problem-matcher.json') ) + + console.log(JSON.stringify(process.env, null, ' ')) // Get sources await gitSourceProvider.getSource(sourceSettings)