From 6899f523f0ec5946b14fc3ef4f0ef5ec423a2f1d Mon Sep 17 00:00:00 2001 From: KaKi87 Date: Sat, 19 Jul 2025 23:10:51 +0200 Subject: [PATCH] :bug: Fix 94e2b81 --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index f7ef868bd61..11de74a320e 100644 --- a/main.js +++ b/main.js @@ -30,7 +30,7 @@ for(const { continue; } console.log(`Downloading ${url}`); - await $`curl -L ${url} | tar xJ 2>/dev/null`; + await $`curl -L ${url} | tar xJ || true`; console.log(`Staging version ${version}`); await $`git add vivaldi-source` console.log(`Committing version ${version}`);