Added librewolf-portable.exe to windows zip files
This commit is contained in:
parent
4cf3e8791b
commit
fc4cdde529
1 changed files with 7 additions and 1 deletions
8
build.py
8
build.py
|
|
@ -442,6 +442,12 @@ def execute_lw_artifacts():
|
||||||
if options.distro != 'win':
|
if options.distro != 'win':
|
||||||
exec("cp -v files/register-librewolf files/start-librewolf files/start-librewolf.desktop.in librewolf")
|
exec("cp -v files/register-librewolf files/start-librewolf files/start-librewolf.desktop.in librewolf")
|
||||||
|
|
||||||
|
if options.distro == 'win':
|
||||||
|
exec("rm -f librewolf-portable.exe")
|
||||||
|
exec("wget -q https://gitlab.com/stanzabird/librewolf-portable/uploads/975201177f106840b9067a4193c25319/librewolf-portable.exe")
|
||||||
|
exec("mv librewolf-portable.exe librewolf")
|
||||||
|
pass
|
||||||
|
|
||||||
# create zip file
|
# create zip file
|
||||||
if options.src == 'release':
|
if options.src == 'release':
|
||||||
zipname = "librewolf-{}.en-US.{}.zip".format(pkgver,ospkg)
|
zipname = "librewolf-{}.en-US.{}.zip".format(pkgver,ospkg)
|
||||||
|
|
@ -543,7 +549,7 @@ def execute_all():
|
||||||
|
|
||||||
def execute_clean():
|
def execute_clean():
|
||||||
exec("rm -rf firefox-{}".format(pkgver))
|
exec("rm -rf firefox-{}".format(pkgver))
|
||||||
exec("rm -rf librewolf bootstrap.py tmp.nsi tmp.exe sha256sums.txt upload.txt")
|
exec("rm -rf librewolf bootstrap.py tmp.nsi tmp.exe sha256sums.txt upload.txt librewolf-portable.exe")
|
||||||
for filename in glob.glob("librewolf-*"):
|
for filename in glob.glob("librewolf-*"):
|
||||||
os.remove(filename)
|
os.remove(filename)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue