From 1158c19b6169d1fcc3930b8cdfd751a1f052a548 Mon Sep 17 00:00:00 2001 From: Jason Young Date: Tue, 24 Aug 2010 21:35:08 -0700 Subject: [PATCH] Fix printing of authors for git-summary's on Ubuntu --- bin/git-summary | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/git-summary b/bin/git-summary index 64694fa..9996b26 100755 --- a/bin/git-summary +++ b/bin/git-summary @@ -9,5 +9,6 @@ echo echo " project: $project" echo " commits: $commit_count" echo " files : $file_count" -echo " authors: \n$authors" +echo " authors: " +echo "$authors" echo \ No newline at end of file