diff options
author | Bert Belder <bertbelder@gmail.com> | 2012-06-22 15:13:28 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2012-06-22 15:24:22 +0200 |
commit | 399731e3a05140214713a7ba9a22a9f36faea87b (patch) | |
tree | c3f7c6dd13f7ae7b3a0ec25581dced7df1392cbb | |
parent | 2dccebd4b829fbc53358568c348272f1e56522ba (diff) | |
download | nodejs-399731e3a05140214713a7ba9a22a9f36faea87b.tar.gz nodejs-399731e3a05140214713a7ba9a22a9f36faea87b.tar.bz2 nodejs-399731e3a05140214713a7ba9a22a9f36faea87b.zip |
windows msi: add npm dir to user PATH only
The NPM folder is personal to the user. It shouldn't be added to the
system-wide path.
-rwxr-xr-x | tools/msvs/msi/product.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/product.wxs index b75b853ce..d36b0439f 100755 --- a/tools/msvs/msi/product.wxs +++ b/tools/msvs/msi/product.wxs @@ -52,7 +52,7 @@ Action="set" Name="PATH" Part="last" - System="yes" + System="no" Value="[AppDataFolder]npm\" /> <Environment Id="node_env" Action="set" |