mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
f7696850e2
As suggested in #1338
11 lines
207 B
JavaScript
11 lines
207 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const globalWorker = require('./workers/global');
|
|
|
|
(async () => {
|
|
await globalWorker.start();
|
|
// istanbul ignore if
|
|
if (global.renovateError) {
|
|
process.exitCode = 1;
|
|
}
|
|
})();
|