From e4bfef3df88b3bc59597f298e851a6d38da58118 Mon Sep 17 00:00:00 2001 From: KaKi87 Date: Sun, 20 Jul 2025 00:08:37 +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 6c066a1166a..f7ef868bd61 100644 --- a/main.js +++ b/main.js @@ -30,7 +30,7 @@ for(const { continue; } console.log(`Downloading ${url}`); - await $`curl -L ${url} | tar xJ --ignore-failed-read`; + await $`curl -L ${url} | tar xJ 2>/dev/null`; console.log(`Staging version ${version}`); await $`git add vivaldi-source` console.log(`Committing version ${version}`);