| # Copyright (c) 2012 The Chromium OS Authors. |
| # SPDX-License-Identifier: GPL-2.0+ |
| """Look for the get_maintainer.pl script. |
| If the script is found we'll return a path to it; else None. |
| os.path.join(gitutil.GetTopLevel(), 'scripts'), |
| fname = os.path.join(path, 'get_maintainer.pl') |
| if os.path.isfile(fname): |
| def GetMaintainer(fname, verbose=False): |
| """Run get_maintainer.pl on a file if we find it. |
| We look for get_maintainer.pl in the 'scripts' directory at the top of |
| git. If we find it we'll run it. If we don't find get_maintainer.pl |
| fname: Path to the patch file to run get_maintainer.pl on. |
| A list of email addresses to CC to. |
| get_maintainer = FindGetMaintainer() |
| print "WARNING: Couldn't find get_maintainer.pl" |
| stdout = command.Output(get_maintainer, '--norolestats', fname) |
| return stdout.splitlines() |