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
Gaba
fenix
Commits
b8dc6597
Commit
b8dc6597
authored
Sep 14, 2020
by
Georg Koppen
Committed by
Matthew Finkel
Oct 23, 2020
Browse files
Bug 40042: Add option do overwrite timestamp in extension version
parent
74e763a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/build.gradle
View file @
b8dc6597
...
...
@@ -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