From 31fb0235423638ea000f221025035f9c035ee9d2 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Tue, 27 Sep 2022 09:20:43 +0200 Subject: [PATCH] windows issue #244 --- linux/assets/artifacts.mk | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/linux/assets/artifacts.mk b/linux/assets/artifacts.mk index bf85eb1..3ec212e 100644 --- a/linux/assets/artifacts.mk +++ b/linux/assets/artifacts.mk @@ -39,5 +39,9 @@ artifacts : ( mkdir work/ahk && cd work/ahk && unzip -q ../ahk.zip ) ( cd work/librewolf-$(full_version) && wine64 ../ahk/Compiler/Ahk2Exe.exe /in LibreWolf-Portable.ahk /icon LibreWolf-Portable.ico ) ( cd work/librewolf-$(full_version) && rm -f LibreWolf-Portable.ahk LibreWolf-Portable.ico dejsonlz4.exe jsonlz4.exe ) - rm -f $(zipname) - ( cd work && zip -qr9 ../$(zipname) librewolf-$(full_version) ) +# issue #224 - Consider including msvcp140 & vcruntime140 in portable package + ( cd work/librewolf-$(full_version)/LibreWolf && \ + wget -q -O ./vc_redist.x64-extracted.zip "https://gitlab.com/librewolf-community/browser/windows/uploads/7106b776dc663d985bb88eabeb4c5d7d/vc_redist.x64-extracted.zip" && \ + unzip vc_redist.x64-extracted.zip && \\ + rm vc_redist.x64-extracted.zip ) + ( rm -f $(zipname) && cd work && zip -qr9 ../$(zipname) librewolf-$(full_version) )