Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
fenix
Commits
7fae8adc
Commit
7fae8adc
authored
Sep 14, 2020
by
Georg Koppen
Committed by
Matthew Finkel
Oct 07, 2020
Browse files
Bug 40042: Add option do overwrite timestamp in extension version
parent
a935f9e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/build.gradle
View file @
7fae8adc
...
...
@@ -679,7 +679,10 @@ ext.updateExtensionVersion = { task, extDir ->
rename
{
'manifest.json'
}
into
extDir
def
values
=
[
'version'
:
AndroidComponents
.
VERSION
+
"."
+
new
Date
().
format
(
'MMddHHmmss'
)]
def
systemEnvBuildDate
=
System
.
getenv
(
'MOZ_BUILD_DATE'
)
def
values
=
[
'version'
:
AndroidComponents
.
VERSION
+
"."
+
(
systemEnvBuildDate
!=
null
?
systemEnvBuildDate
:
new
Date
().
format
(
'MMddHHmmss'
))]
inputs
.
properties
(
values
)
expand
(
values
)
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment