diff options
author | Michaƫl Zasso <mic.besace@gmail.com> | 2015-11-05 20:53:52 +0100 |
---|---|---|
committer | Roman Reiss <me@silverwind.io> | 2016-01-13 23:15:01 +0100 |
commit | ed55169834a3ce16a271def9630c858626ded34d (patch) | |
tree | 6d7e6528509181b7e4cddb062189dd627577a342 /.gitignore | |
parent | 90204cc4681a682d384c3a2cf02ca7f377139ce4 (diff) | |
download | node-new-ed55169834a3ce16a271def9630c858626ded34d.tar.gz |
gitignore: never ignore debug module
On case-insensitive platorms, the Debug/ rule catches the debug module
under npm and eslint.
PR-URL: https://github.com/nodejs/node/pull/2286
Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 931bf8c024..a0cfe00f32 100644 --- a/.gitignore +++ b/.gitignore @@ -24,7 +24,7 @@ icu_config.gypi # various stuff that VC++ produces/uses Debug/ -!deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug +!**/node_modules/debug/ !deps/v8/src/debug/ Release/ !doc/blog/** |