From c5df9d2e19b84a72e79018cf28b7fb34e492f2a3 Mon Sep 17 00:00:00 2001 From: KaKi87 Date: Sat, 19 Jul 2025 23:14:32 +0200 Subject: [PATCH] :bug: Fix 94e2b81 Retrying old fix attempts cause didn't realize rerunning jobs doesn't take new commits into consideration --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 11de74a320e..65390fee586 100644 --- a/main.js +++ b/main.js @@ -30,7 +30,7 @@ for(const { continue; } console.log(`Downloading ${url}`); - await $`curl -L ${url} | tar xJ || true`; + await $`curl -L ${url} | tar xJ --overwrite-dir`; console.log(`Staging version ${version}`); await $`git add vivaldi-source` console.log(`Committing version ${version}`);