From 47e9e98d6fdecb9d08cb3020a78d427eb8c76773 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 2 Apr 2013 03:17:48 -0400 Subject: Fix the co-authored-by processing. One of the problems with fakes is that sometimes you can fake away a bug and have happily passing tests and broken code. Change-Id: Ib544739699b63d3f5e80edc16e19377d45782334 --- openstack/common/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openstack') diff --git a/openstack/common/setup.py b/openstack/common/setup.py index dec74fd..ba6b54a 100644 --- a/openstack/common/setup.py +++ b/openstack/common/setup.py @@ -171,8 +171,8 @@ def generate_authors(): " log --format='%aN <%aE>' | sort -u | " "egrep -v '" + jenkins_email + "'") changelog = _run_shell_command(git_log_cmd) - signed_cmd = ("git log --git-dir=" + git_dir + - " | grep -i Co-authored-by: | sort -u") + signed_cmd = ("git --git-dir=" + git_dir + + " log | grep -i Co-authored-by: | sort -u") signed_entries = _run_shell_command(signed_cmd) if signed_entries: new_entries = "\n".join( -- cgit