Skip to content

Commit

Permalink
#1095: refactor command structure, quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
alfeilex committed Feb 28, 2025
1 parent aeb4858 commit 239635a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions windows-installer/Package.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<!-- Execution of install command-->
<SetProperty
Id="RunInstallAction"
Value="&quot;[%SystemFolder]cmd.exe&quot; /c &quot;cd /d &quot;[INSTALLFOLDER]&quot; &amp;&amp; bin\ideasy.exe -f install&quot;"
Value='"[%SystemFolder]cmd.exe" /c "cd /d [INSTALLFOLDER] &amp;&amp; bin\ideasy.exe -f install > install.log"'
Before="RunInstallAction"
Sequence="execute"
/>
Expand All @@ -51,7 +51,7 @@
<!-- Execution of uninstall command-->
<SetProperty
Id="RunUninstallAction"
Value="&quot;[%SystemFolder]cmd.exe&quot; /c &quot;[%IDE_ROOT]\_ide\installation\bin\ideasy.exe -f uninstall&quot;"
Value='"[%SystemFolder]cmd.exe" /c "[%IDE_ROOT]\_ide\installation\bin\ideasy.exe -f uninstall > [%IDE_ROOT]\uninstall.log"'
Before="RunUninstallAction"
Sequence="execute"
/>
Expand Down

0 comments on commit 239635a

Please sign in to comment.