Skip to content

Commit

Permalink
Add shell scripts to MSI (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongin committed Nov 21, 2019
1 parent 172010d commit b6a607d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nvs",
"version": "1.5.3",
"version": "1.5.4",
"description": "Node Version Switcher",
"main": "lib/index.js",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions setup/nvs.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
<ComponentRef Id="NvsPackageJson"/>
<ComponentRef Id="NvsCmdScript"/>
<ComponentRef Id="NvsPSScript"/>
<ComponentRef Id="NvsBashScript"/>
<ComponentRef Id="NvsBashExeScript"/>
<ComponentRef Id="NvsDefaults"/>
<ComponentRef Id="SevenZipTool" />
<ComponentGroupRef Id="NvsLibFiles"/>
Expand Down Expand Up @@ -104,6 +106,12 @@
<Component Id="NvsPSScript">
<File Id="nvs.ps1" KeyPath="yes" Source="$(var.SourceDir)\nvs.ps1"/>
</Component>
<Component Id="NvsBashScript">
<File Id="nvs.sh" KeyPath="yes" Source="$(var.SourceDir)\nvs.sh"/>
</Component>
<Component Id="NvsBashExeScript">
<File Id="nvs" KeyPath="yes" Source="$(var.SourceDir)\nvs"/>
</Component>
<Component Id="NvsDefaults">
<File Id="defaults.json" KeyPath="yes" Source="$(var.SourceDir)\defaults.json"/>
</Component>
Expand Down

0 comments on commit b6a607d

Please sign in to comment.