From a1d12fe93935234ae3b635cc01665cb0c4ebb583 Mon Sep 17 00:00:00 2001 From: Rahul Bedarkar Date: Mon, 17 Oct 2016 22:31:31 +0530 Subject: [PATCH] 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 Signed-off-by: Thomas Petazzoni --- support/scripts/get-developers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/scripts/get-developers b/support/scripts/get-developers index f73512f17a..8b1891d999 100755 --- a/support/scripts/get-developers +++ b/support/scripts/get-developers @@ -74,7 +74,7 @@ def __main__(): result = "--to buildroot@buildroot.org" for dev in matching_devs: - result += " --to \"%s\"" % dev + result += " --cc \"%s\"" % dev if result != "": print("git send-email %s" % result)