From 50a02d8e11eb390384fdda98a6c8aeaa8aaee7ea Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Tue, 27 Sep 2022 09:30:12 +0200 Subject: [PATCH] added #244 to windows script --- mk.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mk.py b/mk.py index 9df51cc..a9c10c6 100644 --- a/mk.py +++ b/mk.py @@ -195,6 +195,14 @@ def artifacts(): exec('rm -f LibreWolf-Portable.ahk LibreWolf-Portable.ico dejsonlz4.exe jsonlz4.exe') os.chdir('..') + # issue #244 + os.chdir('librewolf-{}/LibreWolf'.format(version)) + exec('wget -q -O ./vc_redist.x64-extracted.zip "https://gitlab.com/librewolf-community/browser/windows/uploads/7106b776dc663d985bb88eabeb4c5d7d/vc_redist.x64-extracted.zip"') + exec('unzip vc_redist.x64-extracted.zip') + exec('rm vc_redist.x64-extracted.zip') + os.chdir('../..') + + # make final zip pa_zipname = 'librewolf-{}.en-US.win64-portable.zip'.format(full_version) exec("rm -f ../{}".format(pa_zipname)) exec("zip -qr9 ../{} librewolf-{}".format(pa_zipname,version))