diff options
author | Bert Belder <bertbelder@gmail.com> | 2012-06-25 18:40:12 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2012-06-25 18:40:12 +0200 |
commit | 3f932c52b0c04154f0e856da3b177d849b132c64 (patch) | |
tree | 283c9f9f80ca95e0eeba02dd46d98bb01b45b838 /tools/msvs | |
parent | d7825b3c1decd31556d583283a988ef2a7c8a248 (diff) | |
download | nodejs-3f932c52b0c04154f0e856da3b177d849b132c64.tar.gz nodejs-3f932c52b0c04154f0e856da3b177d849b132c64.tar.bz2 nodejs-3f932c52b0c04154f0e856da3b177d849b132c64.zip |
windows msi: don't use .exe file as icon
This makes the installer nice and small again.
Diffstat (limited to 'tools/msvs')
-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 26f8827b4..443739dc2 100755 --- a/tools/msvs/msi/product.wxs +++ b/tools/msvs/msi/product.wxs @@ -23,7 +23,7 @@ <MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A later version of node.js is already installed. Setup will now exit." /> - <Icon Id="node.exe" SourceFile="$(var.SourceDir)\node.exe"/> + <Icon Id="node.exe" SourceFile="$(var.RepoDir)\src\res\node.ico"/> <Property Id="ARPPRODUCTICON" Value="node.exe" /> <Directory Id="TARGETDIR" Name="SourceDir"> |