v96.0-0
This commit is contained in:
parent
dfdb3eb4ee
commit
df251864cd
5 changed files with 7 additions and 5 deletions
2
Makefile
2
Makefile
|
|
@ -20,7 +20,7 @@ all : fetch build artifacts
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
rm -rf work
|
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
|
veryclean : clean
|
||||||
rm -rf librewolf-$(shell cat version)
|
rm -rf librewolf-$(shell cat version)
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,5 @@ mk_add_options MOZ_TELEMETRY_REPORTING=0
|
||||||
# - no need to specify wasi sdk folder
|
# - no need to specify wasi sdk folder
|
||||||
#
|
#
|
||||||
|
|
||||||
ac_add_options --disable-installer
|
|
||||||
ac_add_options --disable-updater
|
ac_add_options --disable-updater
|
||||||
ac_add_options --disable-maintenance-service
|
ac_add_options --disable-maintenance-service
|
||||||
|
|
|
||||||
3
mk.py
3
mk.py
|
|
@ -97,6 +97,9 @@ def artifacts():
|
||||||
# let's get 'release'.
|
# let's get 'release'.
|
||||||
with open('release','r') as file2:
|
with open('release','r') as file2:
|
||||||
release = file2.read().rstrip()
|
release = file2.read().rstrip()
|
||||||
|
if release == '0' :
|
||||||
|
full_version = '{}'.format(version)
|
||||||
|
else:
|
||||||
full_version = '{}.{}'.format(version,release)
|
full_version = '{}.{}'.format(version,release)
|
||||||
|
|
||||||
# let's copy in the .ico icon.
|
# let's copy in the .ico icon.
|
||||||
|
|
|
||||||
2
release
2
release
|
|
@ -1 +1 @@
|
||||||
2
|
0
|
||||||
|
|
|
||||||
2
version
2
version
|
|
@ -1 +1 @@
|
||||||
95.0.2
|
96.0
|
||||||
Loading…
Add table
Reference in a new issue