Skip to content

Commit

Permalink
Fix windows installer path (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Weakly committed Aug 5, 2020
1 parent 5475730 commit d398a01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions win32/cryptol.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<Shortcut Id="startmenuCryptol"
Name="Cryptol $(var.version)"
WorkingDirectory='INSTALLDIR'
Target="[INSTALLDIR]\bin\cryptol.exe"
Target="[INSTALLDIR]\dist\bin\cryptol.exe"
Icon="crypto.ico"
IconIndex="0" />
<!-- <Shortcut Id="startmenuTutorial" -->
Expand All @@ -56,7 +56,7 @@

<DirectoryRef Id="TARGETDIR">
<Component Id="Path" Guid="4D7F78E6-DA16-4C1B-96C4-B33C87502C81">
<Environment Id="PATH" Name="PATH" Value="[INSTALLDIR]\bin" Permanent="no" Part="last" Action="set" System="no" />
<Environment Id="PATH" Name="PATH" Value="[INSTALLDIR]\dist\bin" Permanent="no" Part="last" Action="set" System="no" />
</Component>
</DirectoryRef>

Expand Down

0 comments on commit d398a01

Please sign in to comment.