1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

script/autobuild.py: git diff has a '--stat' option, no need to use 'diffstat'

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Mon Feb  7 14:55:10 CET 2011 on sn-devel-104
This commit is contained in:
Stefan Metzmacher 2011-02-07 13:48:08 +01:00
parent 4b7d0492bb
commit 4a558ca9d8

View File

@ -334,7 +334,7 @@ def rebase_tree(url):
sys.exit(0)
run_cmd("git describe master/master", show=True, dir=test_master)
run_cmd("git describe HEAD", show=True, dir=test_master)
run_cmd("git --no-pager diff HEAD master/master | diffstat", show=True, dir=test_master)
run_cmd("git --no-pager diff --stat HEAD master/master", show=True, dir=test_master)
def push_to(url):
print("Pushing to %s" % url)