From d9a0546666c4628dbf577c6525ad64f3ee3ef077 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 25 Sep 2010 16:18:00 -0700 Subject: autobuild: added --fix-whitespace option --- script/autobuild.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'script/autobuild.py') diff --git a/script/autobuild.py b/script/autobuild.py index a1b45906a9..ec9998950f 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -116,6 +116,7 @@ class builder: class buildlist: '''handle build of multiple directories''' def __init__(self, tasklist, tasknames): + global tasks self.tlist = [] self.tail_proc = None if tasknames == ['pass']: @@ -214,7 +215,10 @@ def rebase_tree(url): print("Rebasing on %s" % url) run_cmd("git remote add -t master master %s" % url, show=True, dir=test_master) run_cmd("git fetch master", show=True, dir=test_master) - run_cmd("git rebase master/master", show=True, dir=test_master) + if options.fix_whitespace: + run_cmd("git rebase --whitespace=fix master/master", show=True, dir=test_master) + else: + run_cmd("git rebase master/master", show=True, dir=test_master) def push_to(url): print("Pushing to %s" % url) @@ -244,6 +248,8 @@ parser.add_option("", "--push-master", help="push to %s on success" % samba_mast default=False, action='store_true') parser.add_option("", "--mark", help="add a Tested-By signoff before pushing", default=False, action="store_true") +parser.add_option("", "--fix-whitespace", help="fix whitespace on rebase", + default=False, action="store_true") (options, args) = parser.parse_args() -- cgit