mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
668bde8ac0
In theory the msi should broadcast a 'WM_SETTINGCHANGE' message to all windows after modifying the PATH environment variable. This ensures that the new PATH is visible to other processes without restarting windows (although it's still necessary to close and reopen active console windows). Unfortunately, the broadcast doesn't always happen, for unknown reasons. That's why this patch adds a custom action that unconditionally broadcasts a WM_SETTINGCHANGE message. Bug: https://github.com/iojs/io.js/issues/603 PR: https://github.com/iojs/io.js/pull/613 Reviewed-by: Bert Belder <bertbelder@gmail.com>
79 lines
988 B
Plaintext
79 lines
988 B
Plaintext
core
|
|
vgcore.*
|
|
v8*.log
|
|
perf.data
|
|
perf.data.old
|
|
.waf*
|
|
tags
|
|
.lock-wscript
|
|
*.pyc
|
|
doc/api.xml
|
|
tmp/
|
|
test/tmp*/
|
|
iojs
|
|
iojs_g
|
|
*.swp
|
|
.benchmark_reports
|
|
/.project
|
|
/.cproject
|
|
icu_config.gypi
|
|
|
|
/out
|
|
|
|
# various stuff that VC++ produces/uses
|
|
Debug/
|
|
Release/
|
|
!doc/blog/**
|
|
*.sln
|
|
!nodemsi.sln
|
|
*.suo
|
|
*.vcproj
|
|
*.vcxproj
|
|
!custom_actions.vcxproj
|
|
*.vcxproj.user
|
|
*.vcxproj.filters
|
|
UpgradeLog*.XML
|
|
_UpgradeReport_Files/
|
|
ipch/
|
|
*.sdf
|
|
*.opensdf
|
|
|
|
/config.mk
|
|
/config.gypi
|
|
*-nodegyp*
|
|
/gyp-mac-tool
|
|
/dist-osx
|
|
/npm.wxs
|
|
/tools/msvs/npm.wixobj
|
|
/tools/osx-pkg.pmdoc/index.xml
|
|
/test/addons/doc-*/
|
|
email.md
|
|
deps/v8-*
|
|
deps/icu
|
|
deps/icu*.zip
|
|
deps/icu*.tgz
|
|
deps/icu-tmp
|
|
./node_modules
|
|
.svn/
|
|
|
|
# generated by gyp on Windows
|
|
deps/openssl/openssl.props
|
|
deps/openssl/openssl.targets
|
|
deps/openssl/openssl.xml
|
|
|
|
# generated by gyp on android
|
|
/*.target.mk
|
|
/*.host.mk
|
|
deps/openssl/openssl.target.mk
|
|
deps/zlib/zlib.target.mk
|
|
|
|
# build/release artifacts
|
|
/*.tar.*
|
|
/SHASUMS*.txt*
|
|
|
|
/tools/wrk/wrk
|
|
|
|
# test artifacts
|
|
tools/faketime
|
|
icu_config.gypi
|