remove quotes from FLEET_URL property in Windows templates (#13190)
related to #13175 and #13186
This commit is contained in:
@@ -0,0 +1 @@
|
||||
* Fixed a bug that set a wrong Fleet URL in Windows installers.
|
||||
@@ -54,7 +54,7 @@ var windowsWixTemplate = template.Must(template.New("").Option("missingkey=error
|
||||
<Property Id="ARPNOREPAIR" Value="yes" Secure="yes" />
|
||||
<Property Id="ARPNOMODIFY" Value="yes" Secure="yes" />
|
||||
|
||||
<Property Id="FLEET_URL" Value="{{ if .FleetURL }}'{{ .FleetURL }}'{{ end }}"/>
|
||||
<Property Id="FLEET_URL" Value="{{ if .FleetURL }}{{ .FleetURL }}{{ end }}"/>
|
||||
<Property Id="FLEET_SECRET" Value="dummy"/>
|
||||
|
||||
<MediaTemplate EmbedCab="yes" />
|
||||
|
||||
Reference in New Issue
Block a user