Fix spaces->tabs.
authorStephen Haberman <stephen@exigencecorp.com>
Fri, 10 Oct 2008 17:11:24 +0000 (12:11 -0500)
committerStephen Haberman <stephen@exigencecorp.com>
Fri, 10 Oct 2008 17:11:24 +0000 (12:11 -0500)
server/post-receive-trac

index 4e4432a..8a5ec96 100644 (file)
@@ -22,8 +22,8 @@ while read oldrev newrev refname ; do
        echo "$new_commits" | git rev-list --reverse --stdin | while read commit ; do
                set_describe "$commit"
                set_describe_tags "$commit"
-        author="$(git rev-list -n 1 $commit --pretty=format:'%cn <%ce>' | grep -v $commit)"
-        message="$(git rev-list -n 1 $commit --pretty=format:'%s%n%b' | grep -v $commit)"
+               author="$(git rev-list -n 1 $commit --pretty=format:'%cn <%ce>' | grep -v $commit)"
+               message="$(git rev-list -n 1 $commit --pretty=format:'%s%n%b' | grep -v $commit)"
                "$PYTHON" "$POST_RECEIVE_TRAC" "$TRAC_ENV" "$short_refname" "$describe" "$describe_tags" "$commit" "$author" "$message"
        done
 done