mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
remove quotes from FLEET_URL property in Windows templates (#13190)
related to #13175 and #13186
This commit is contained in:
parent
97722be178
commit
ac25d8f581
2 changed files with 2 additions and 1 deletions
1
orbit/changes/13175-windows-url
Normal file
1
orbit/changes/13175-windows-url
Normal file
|
|
@ -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" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue