From 6783e4042a69a198554e57b9018cdac4312eab1b Mon Sep 17 00:00:00 2001 From: KaKi87 Date: Sat, 19 Jul 2025 23:02:22 +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}`);