diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-02-07 13:48:08 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-02-07 14:55:10 +0100 |
commit | 4a558ca9d8af8ab4772fd31818a76aa6235f02a0 (patch) | |
tree | f01e5ebf50df7798f9c7284ca448400f344ab5cb /script | |
parent | 4b7d0492bbc92ca8ebcfa0c58fa2b692dc5585d5 (diff) | |
download | samba-4a558ca9d8af8ab4772fd31818a76aa6235f02a0.tar.gz samba-4a558ca9d8af8ab4772fd31818a76aa6235f02a0.tar.bz2 samba-4a558ca9d8af8ab4772fd31818a76aa6235f02a0.zip |
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
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 6c7b4c7943..b02928574a 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -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) |