Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: templates/manifest.json.tmpl

Issue 29994580: Noissue - Don't use long name in Microsoft Edge release builds (Closed)
Patch Set: Created Feb. 1, 2019, 1:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/expecteddata/AppxManifest_edge_release_build.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/manifest.json.tmpl
===================================================================
--- a/templates/manifest.json.tmpl
+++ b/templates/manifest.json.tmpl
@@ -4,10 +4,12 @@
{
"manifest_version": 2,
- {%- if releaseBuild %}
+ {%- if not releaseBuild %}
+ "name": "__MSG_name_devbuild__",
+ {%- elif type != "edge" %}
"name": "__MSG_name_releasebuild__",
{%- else %}
- "name": "__MSG_name_devbuild__",
+ "name": "__MSG_name__",
{%- endif %}
"short_name": "__MSG_name__",
« no previous file with comments | « no previous file | tests/expecteddata/AppxManifest_edge_release_build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld