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
47192189
Commit
47192189
authored
Sep 14, 2020
by
Georg Koppen
Committed by
Matthew Finkel
Nov 24, 2020
Browse files
Bug 40042: Add option do overwrite timestamp in extension version
parent
5dc6aff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/build.gradle
View file @
47192189
...
...
@@ -700,7 +700,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