diff options
| author | Tom Rini <[email protected]> | 2020-11-15 10:13:22 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-11-15 10:13:22 -0500 |
| commit | cd0d3749afdad4f4fd03bc005fe5efaad0e09417 (patch) | |
| tree | 2b36d72786e953e1c59e332aeeda08a00acbc5ca /tools/patman/gitutil.py | |
| parent | de865f7ee1d9b6dff6e265dee44509c8274ea606 (diff) | |
| parent | a3e458524c15710e4ac9ce1556a5f0898084d09a (diff) | |
Merge tag 'dm-pull-15nov20' of git://git.denx.de/u-boot-dm
Minor fixes/improvements to 'patman status'
Diffstat (limited to 'tools/patman/gitutil.py')
| -rw-r--r-- | tools/patman/gitutil.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/patman/gitutil.py b/tools/patman/gitutil.py index 3a2366bcf59..31fb3b28299 100644 --- a/tools/patman/gitutil.py +++ b/tools/patman/gitutil.py @@ -455,21 +455,21 @@ def EmailPatches(series, cover_fname, args, dry_run, raise_on_error, cc_fname, >>> EmailPatches(series, 'cover', ['p1', 'p2'], True, True, 'cc-fname', \ False, alias) 'git send-email --annotate --to "[email protected]" --cc \ -"[email protected]" --cc-cmd "./patman --cc-cmd cc-fname" cover p1 p2' +"[email protected]" --cc-cmd "./patman send --cc-cmd cc-fname" cover p1 p2' >>> EmailPatches(series, None, ['p1'], True, True, 'cc-fname', False, \ alias) 'git send-email --annotate --to "[email protected]" --cc \ -"[email protected]" --cc-cmd "./patman --cc-cmd cc-fname" p1' +"[email protected]" --cc-cmd "./patman send --cc-cmd cc-fname" p1' >>> series['cc'] = ['all'] >>> EmailPatches(series, 'cover', ['p1', 'p2'], True, True, 'cc-fname', \ True, alias) 'git send-email --annotate --to "[email protected]" --cc-cmd "./patman \ ---cc-cmd cc-fname" cover p1 p2' +send --cc-cmd cc-fname" cover p1 p2' >>> EmailPatches(series, 'cover', ['p1', 'p2'], True, True, 'cc-fname', \ False, alias) 'git send-email --annotate --to "[email protected]" --cc \ "[email protected]" --cc "[email protected]" --cc \ -"[email protected]" --cc-cmd "./patman --cc-cmd cc-fname" cover p1 p2' +"[email protected]" --cc-cmd "./patman send --cc-cmd cc-fname" cover p1 p2' # Restore argv[0] since we clobbered it. >>> sys.argv[0] = _old_argv0 @@ -500,7 +500,7 @@ def EmailPatches(series, cover_fname, args, dry_run, raise_on_error, cc_fname, cmd += to cmd += cc - cmd += ['--cc-cmd', '"%s --cc-cmd %s"' % (sys.argv[0], cc_fname)] + cmd += ['--cc-cmd', '"%s send --cc-cmd %s"' % (sys.argv[0], cc_fname)] if cover_fname: cmd.append(cover_fname) cmd += args |
