diff options
| author | bors <bors@rust-lang.org> | 2016-04-13 17:50:12 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-04-13 17:50:12 -0700 |
| commit | adb0923492d737a4b3243db05f042e22a672b2d8 (patch) | |
| tree | 62db5b5a1037556413b69ebe04c1fcab5479d193 | |
| parent | 2b6020723115e77ebe94f228c0c9b977b9199c6e (diff) | |
| parent | de1838148c1d07493d6143d7162c50636e8bac35 (diff) | |
Auto merge of #32944 - alexcrichton:add-to-gitignore, r=brson
Add /obj/ to .gitignore This is the build directory our buildbots use, and right now the bots are running `git clean -f -f -d` to remove all untracked files between runs and this is accidentally deleting `obj`, so we're building LLVM a lot. Hopefully this keeps the bots caching `obj` so we can clean it out manually and leave LLVM around.
| -rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 5f1778376eb..972f527046b 100644 --- a/.gitignore +++ b/.gitignore @@ -78,6 +78,7 @@ /stage3/ /test/ /tmp/ +/obj/ TAGS TAGS.emacs TAGS.vi |
