diff options
author | ConorDavenport <cnrdavenport@gmail.com> | 2020-01-29 12:01:09 +0000 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2020-01-31 19:13:04 -0800 |
commit | d10927b687858224558dbe0f10f5c57b4139ad96 (patch) | |
tree | bc8469c84fc2dfdb55f10959b02d1b5624350233 /.gitignore | |
parent | 023ecbccc8b1e492234e769894fde2967d4a5677 (diff) | |
download | node-new-d10927b687858224558dbe0f10f5c57b4139ad96.tar.gz |
build: ignore all the "Debug","Release" folders
Since there're still many "Debug" and "Release" folders in "deps" and
"tools", to make it more strict and totally ignore the generated obj
files, ignore all the files/folders under them.
Refs: https://github.com/nodejs/node/pull/27210
PR-URL: https://github.com/nodejs/node/pull/31565
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index db2597b042..160b96f74a 100644 --- a/.gitignore +++ b/.gitignore @@ -47,8 +47,8 @@ /config_fips.gypi # === Rules for MSVS artifacts === -/Debug -/Release +Debug/ +Release/ *.sln *.suo *.vcxproj* |