Skip to content

Commit 7104c4b

Browse files
committed
gitignore: only ignore root Debug directory
On case insensitive platforms, the rule catches the debug module under npm and eslint and a source directory in next versions of V8. Do the same with the Release directory for consistency. Ref: #2286 (comment) Ref: #2688 (comment) PR-URL: #3144 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1 parent 02fe821 commit 7104c4b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ icu_config.gypi
2323
/out
2424

2525
# various stuff that VC++ produces/uses
26-
Debug/
27-
!node_modules/debug/
28-
Release/
26+
/Debug/
27+
/Release/
2928
!doc/blog/**
3029
*.sln
3130
!nodemsi.sln

0 commit comments

Comments
 (0)