Skip to content

Commit

Permalink
Made change in the custom action code to ignore errors and always a s…
Browse files Browse the repository at this point in the history
…uccess as it is not application critical. Also renamed some functions to reflect the actual work.
  • Loading branch information
nethip committed Apr 17, 2015
1 parent 6b882f6 commit a1f5149
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions installer/win/Brackets.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,15 @@
<!-- Include the Custom Actions library - currently just to send notification of Environment changes. -->
<Binary Id="CustomEnvAction.dll" SourceFile="CustomEnvAction.dll" />

<!-- Define the custom action to Refresh Environment Variables. -->
<CustomAction Id="RefreshEnvironmentVariables"
<!-- Define the custom action to broadcast Environment Variables change. -->
<CustomAction Id="BroadcastEnvironmentVariablesChange"
Return="check"
Execute="immediate"
BinaryKey="CustomEnvAction.dll"
DllEntry="RefreshEnvironmentVariables" />
DllEntry="BroadcastEnvironmentVariablesChange" />

<InstallExecuteSequence>
<Custom Action="RefreshEnvironmentVariables" After="InstallFinalize"/>
<Custom Action="BroadcastEnvironmentVariablesChange" After="InstallFinalize"/>
</InstallExecuteSequence>

<SetProperty Id="ARPINSTALLLOCATION" Value="[INSTALLDIR]" After="CostFinalize" />
Expand Down
Binary file modified installer/win/CustomEnvAction.dll
Binary file not shown.

0 comments on commit a1f5149

Please sign in to comment.