We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 371b7e5 commit 801e98bCopy full SHA for 801e98b
src/index.ts
@@ -44,7 +44,11 @@ const main = async () => {
44
for (const dist of dists) {
45
if (dist.url.includes('vendor')) continue;
46
logger.info('Downloading event: ' + dist.event);
47
- await handle(dist.url, `events/${dist.game}/${dist.event}`);
+ try {
48
+ await handle(dist.url, `events/${dist.game}/${dist.event}`);
49
+ } catch (e) {
50
+ logger.error(e);
51
+ }
52
}
53
54
// Sync to Samba Share
0 commit comments