Bug 1439727 - Ignore third_party/python/psutil/tmp/ in VCS; r?build draft
authorGregory Szorc <gps@mozilla.com>
Wed, 07 Mar 2018 08:59:48 -0800
changeset 764648 ed299c2c4b1c67b3cc1a23e35ab7e856c25478ea
parent 764647 6de5c21f8d86391b4437176f45b4e1c9bd5ac099
push id101807
push userbmo:gps@mozilla.com
push dateWed, 07 Mar 2018 23:06:39 +0000
reviewersbuild
bugs1439727
milestone60.0a1
Bug 1439727 - Ignore third_party/python/psutil/tmp/ in VCS; r?build I noticed some psutil build files appearing in `hg status` output. Let's ignore that directory. MozReview-Commit-ID: IxrjOlNGuZZ
.gitignore
.hgignore
--- a/.gitignore
+++ b/.gitignore
@@ -71,16 +71,17 @@ parser/html/java/javaparser/
 
 # Local Gradle configuration properties.
 /local.properties
 
 # Python virtualenv artifacts.
 third_party/python/psutil/**/*.so
 third_party/python/psutil/**/*.pyd
 third_party/python/psutil/build/
+third_party/python/psutil/tmp/
 
 # Ignore chrome.manifest files from the devtools loader
 devtools/client/chrome.manifest
 devtools/shared/chrome.manifest
 
 # Ignore node_modules directories in devtools
 devtools/**/node_modules
 
--- a/.hgignore
+++ b/.hgignore
@@ -72,16 +72,17 @@
 
 # Local Gradle configuration properties.
 ^local.properties$
 
 # Python stuff installed at build time.
 ^third_party/python/psutil/.*\.so
 ^third_party/python/psutil/.*\.pyd
 ^third_party/python/psutil/build/
+^third_party/python/psutil/tmp/
 
 # Git repositories
 .git/
 
 # Ignore chrome.manifest files from the devtools loader
 ^devtools/client/chrome.manifest$
 ^devtools/shared/chrome.manifest$