remove quotes from FLEET_URL property in Windows templates (#13190)

related to #13175 and #13186
This commit is contained in:
Roberto Dip
2023-08-08 16:36:33 -03:00
committed by GitHub
parent 97722be178
commit ac25d8f581
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
* Fixed a bug that set a wrong Fleet URL in Windows installers.
+1 -1
View File
@@ -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" />