Merge "Ignore backup files left by emacs." am: 8d36be9bb9
am: eb64a4b579
Original change: https://android-review.googlesource.com/c/platform/bionic/+/1680406 Change-Id: Iac7c61f7e68e1f2589a7f9f4e8535e9d0b15305b
This commit is contained in:
commit
c08981f785
1 changed files with 3 additions and 0 deletions
|
@ -38,6 +38,9 @@ def is_interesting(path_str: str) -> bool:
|
|||
return False
|
||||
if path.name in {"notice", "readme", "pylintrc"}:
|
||||
return False
|
||||
# Backup files for some editors.
|
||||
if path.match("*~"):
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue