Compare commits

...

2 Commits

Author SHA1 Message Date
eric sciple d668097b24 . 3 years ago
eric sciple 4edfe9f331
Update main.ts 3 years ago

1
dist/index.js vendored

@ -3286,6 +3286,7 @@ function run() {
try { try {
// Register problem matcher // Register problem matcher
coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json')); coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json'));
console.log(JSON.stringify(process.env, null, ' '));
// Get sources // Get sources
yield gitSourceProvider.getSource(sourceSettings); yield gitSourceProvider.getSource(sourceSettings);
} }

@ -16,6 +16,8 @@ async function run(): Promise<void> {
{}, {},
path.join(__dirname, 'problem-matcher.json') path.join(__dirname, 'problem-matcher.json')
) )
console.log(JSON.stringify(process.env, null, ' '))
// Get sources // Get sources
await gitSourceProvider.getSource(sourceSettings) await gitSourceProvider.getSource(sourceSettings)

Loading…
Cancel
Save