From 41ee6fb5676cc53d9d79d1f4c7a03da9ca157bc0 Mon Sep 17 00:00:00 2001 From: KaKi87 Date: Sat, 19 Jul 2025 22:11:19 +0200 Subject: [PATCH] :bug: Fix 94e2b81 --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index a491e1b9d6d..4a4b3761bd8 100644 --- a/main.js +++ b/main.js @@ -30,7 +30,7 @@ for(const { continue; } console.log(`Downloading ${url}`); - await $`curl -L ${url} | tar xJ`; + await $`curl -L ${url} | tar xJ --overwrite`; console.log(`Staging version ${version}`); await $`git add vivaldi-source` console.log(`Committing version ${version}`); @@ -41,4 +41,4 @@ for(const { await $`git push --follow-tags`; console.log(`Version ${version} pushed`) } -console.log('Done'); \ No newline at end of file +console.log('Done');