added #244 to windows script
This commit is contained in:
parent
67b8a5b60d
commit
50a02d8e11
1 changed files with 8 additions and 0 deletions
8
mk.py
8
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))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue