get-developers: use --cc instead of --to for developers
authorRahul Bedarkar <rahul.bedarkar@imgtec.com>
Mon, 17 Oct 2016 17:01:31 +0000 (22:31 +0530)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 19 Oct 2016 21:38:16 +0000 (23:38 +0200)
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>
support/scripts/get-developers

index f73512f17a573be35f7d6d4dfd1e78e085e65773..8b1891d9996c45431931eff64e95462109eaa153 100755 (executable)
@@ -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)