Skip to content

Commit

Permalink
Update XML to not embed quote in PATH on windows
Browse files Browse the repository at this point in the history
* Remove the unsupported commend in lua script

Fixes containers#4335

Signed-off-by: Jhon Honce <[email protected]>
  • Loading branch information
jwhonce committed Jan 31, 2020
1 parent 4699d5e commit b977048
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/msi/podman.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</Directory>

<Property Id="setx" Value="setx.exe"/>
<CustomAction Id="ChangePath" ExeCommand='PATH "%PATH%;[INSTALLDIR]"' Property="setx" Execute="deferred" Impersonate="yes" Return="check"/>
<CustomAction Id="ChangePath" ExeCommand="PATH &quot;%PATH%;[INSTALLDIR] &quot;" Property="setx" Execute="deferred" Impersonate="yes" Return="check"/>

<Feature Id="Complete" Level="1">
<ComponentRef Id="INSTALLDIR_Component"/>
Expand Down
1 change: 0 additions & 1 deletion docs/links-to-html.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# links-to-html.lua
function Link(el)
el.target = string.gsub(el.target, "%.1.md", ".html")
return el
Expand Down

0 comments on commit b977048

Please sign in to comment.