Skip to content

Commit

Permalink
Check for svn directories with modified properties during presubmit. …
Browse files Browse the repository at this point in the history
…These directories may trigger unwanted commits due to svn's recursive behavior.

Review URL: http://codereview.chromium.org/165427

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23506 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
thestig@chromium.org committed Aug 15, 2009
1 parent 48352c1 commit 3748d1b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ def CheckChangeOnCommit(input_api, output_api):
input_api, output_api, sources))
results.extend(input_api.canned_checks.CheckSvnForCommonMimeTypes(
input_api, output_api))
results.extend(input_api.canned_checks.CheckSvnModifiedDirectories(
input_api, output_api, sources))
# Make sure the tree is 'open'.
# TODO(maruel): Run it in a separate thread to parallelize checks?
results.extend(CheckTreeIsOpen(
Expand Down

0 comments on commit 3748d1b

Please sign in to comment.