windows issue #244

This commit is contained in:
Bert van der Weerd 2022-09-27 09:20:43 +02:00
parent bfcc829d87
commit 31fb023542
No known key found for this signature in database
GPG key ID: 73370A0B9E5516B0

View file

@ -39,5 +39,9 @@ artifacts :
( mkdir work/ahk && cd work/ahk && unzip -q ../ahk.zip ) ( 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) && 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 ) ( cd work/librewolf-$(full_version) && rm -f LibreWolf-Portable.ahk LibreWolf-Portable.ico dejsonlz4.exe jsonlz4.exe )
rm -f $(zipname) # issue #224 - Consider including msvcp140 & vcruntime140 in portable package
( cd work && zip -qr9 ../$(zipname) librewolf-$(full_version) ) ( 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) )