Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacs/1726313 to your computer and use it in GitHub Desktop.
Save isaacs/1726313 to your computer and use it in GitHub Desktop.
From 30fd2f7bb27addadaf4c620eacc77f29a5716e37 Mon Sep 17 00:00:00 2001
From: isaacs <i@izs.me>
Date: Thu, 2 Feb 2012 14:57:12 -0800
Subject: [PATCH] Add npm msysgit bash shim to msi installer
---
tools/msvs/msi/product.wxs | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/product.wxs
index 1d445d2..aa07c1e 100644
--- a/tools/msvs/msi/product.wxs
+++ b/tools/msvs/msi/product.wxs
@@ -46,6 +46,9 @@
<Component Id="npmcmd" Guid="31e9986d-74cd-44e1-878c-194d3e997d32">
<File Id="filenpmcmd" KeyPath="yes" Source="$(var.NPMSourceDir)\bin\npm.cmd" />
</Component>
+ <Component Id="npmsh" Guid="57754e12-9269-4198-a38c-2c098bf5276e">
+ <File Id="filenpmcmd" KeyPath="yes" Source="$(var.NPMSourceDir)\bin\npm" />
+ </Component>
<?if $(var.Configuration) = Debug ?>
<Component Id="nodepdb" Guid="BEC0F08E-89B3-4C35-A286-8DB8598597F2">
<File Id="filenodepdb" KeyPath="yes" Source="$(var.sourcedir)\node.pdb" />
--
1.7.5.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment