mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
get-developers: use --cc instead of --to for developers
Output of get-developers script in our manual uses --cc for developers, but actual output of get-developers script uses --to. This patch makes code consistent with documentation, by using --cc for developers. Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
1092c8f612
commit
a1d12fe939
@@ -74,7 +74,7 @@ def __main__():
|
|||||||
|
|
||||||
result = "--to buildroot@buildroot.org"
|
result = "--to buildroot@buildroot.org"
|
||||||
for dev in matching_devs:
|
for dev in matching_devs:
|
||||||
result += " --to \"%s\"" % dev
|
result += " --cc \"%s\"" % dev
|
||||||
|
|
||||||
if result != "":
|
if result != "":
|
||||||
print("git send-email %s" % result)
|
print("git send-email %s" % result)
|
||||||
|
|||||||
Reference in New Issue
Block a user