Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: catapult_build/repo_checks.py

Issue 1729313002: Remove ".orig" files and add a check to presubmit (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Generate a single presubmit error message Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « PRESUBMIT.py ('k') | third_party/Paste/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """Checks to use in PRESUBMIT.py for general repository violations."""
6
7
8 def RunChecks(input_api, output_api):
9 orig_files = [f.LocalPath()
10 for f in input_api.AffectedFiles(include_deletes=False)
11 if f.LocalPath().endswith('.orig')]
12 if orig_files:
13 return [output_api.PresubmitError(
14 'Files with ".orig" suffix must not be checked into the '
15 'repository:\n ' + '\n '.join(orig_files))]
16 else:
17 return []
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | third_party/Paste/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698