Commit f6ef5d3c authored by Adam Simpkins's avatar Adam Simpkins Committed by Facebook GitHub Bot

exclude eden/scm build artifacts from the getdeps path map

Summary:
If you have built the `eden/scm` subdirectory with `make local` in your
repository it will have left a bunch of build output artifacts in the source
tree.  Update the getdeps shipit path map for eden to explicitly exclude many
of these build artifacts.

In particular:
- Exclude `eden/scm/build/` since this directory can contains a lot of files.
- Exclude all `*.pyc` files since there may be a reasonable number of these.
- Exclude several Cargo-related files since these will cause problems when
  trying to build Rust code.

Reviewed By: chadaustin

Differential Revision: D20570720

fbshipit-source-id: a60dec4854ae470fdb58e9651fd8a3b910c76004
parent efd0e727
...@@ -49,6 +49,10 @@ fbcode/tools/lfs = tools/lfs ...@@ -49,6 +49,10 @@ fbcode/tools/lfs = tools/lfs
^fbcode/eden/fs/eden-config\.h$ ^fbcode/eden/fs/eden-config\.h$
^fbcode/eden/hg/.*$ ^fbcode/eden/hg/.*$
^fbcode/eden/mononoke/(?!lfs_protocol) ^fbcode/eden/mononoke/(?!lfs_protocol)
^fbcode/eden/scm/build/.*$
^fbcode/eden/.*/\.cargo/.*$
/Cargo\.lock$
\.pyc$
[cmake.defines.all(fb=on,os=windows)] [cmake.defines.all(fb=on,os=windows)]
INSTALL_PYTHON_LIB=ON INSTALL_PYTHON_LIB=ON
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment