From 888690ac123dee81b3f3ef6c7e724b4523fe35bb Mon Sep 17 00:00:00 2001 From: ObjectAscended <93239187+ObjectAscended@users.noreply.github.com> Date: Sat, 16 May 2026 21:04:55 -0700 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- unlock.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/unlock.ts b/unlock.ts index ee36fc8..b875fec 100644 --- a/unlock.ts +++ b/unlock.ts @@ -25,7 +25,12 @@ for (const version of versions) { console.log(version.replace(/-/g, " ") + " unlocked successfully!"); foundAny = true; - } catch { + } catch (error) { + if (error instanceof Deno.errors.NotFound) { + continue; + } + + throw error; } }