This commit is contained in:
Bert van der Weerd 2022-01-10 21:50:41 +01:00
parent dfdb3eb4ee
commit df251864cd
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1
5 changed files with 7 additions and 5 deletions

View file

@ -20,7 +20,7 @@ all : fetch build artifacts
clean :
rm -rf work
rm -f librewolf-$(shell cat version).*.en-US.win64* md5sums.txt upload.txt
rm -f librewolf-$(shell cat version).*.en-US.win64* md5sums.txt upload.txt firefox-$(shell cat version).en-US.win64.zip
veryclean : clean
rm -rf librewolf-$(shell cat version)

View file

@ -31,6 +31,5 @@ mk_add_options MOZ_TELEMETRY_REPORTING=0
# - no need to specify wasi sdk folder
#
ac_add_options --disable-installer
ac_add_options --disable-updater
ac_add_options --disable-maintenance-service

5
mk.py
View file

@ -97,7 +97,10 @@ def artifacts():
# let's get 'release'.
with open('release','r') as file2:
release = file2.read().rstrip()
full_version = '{}.{}'.format(version,release)
if release == '0' :
full_version = '{}'.format(version)
else:
full_version = '{}.{}'.format(version,release)
# let's copy in the .ico icon.
exec('cp -v assets/librewolf.ico work/librewolf')

View file

@ -1 +1 @@
2
0

View file

@ -1 +1 @@
95.0.2
96.0