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)