diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-11 16:49:45 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-11 16:49:45 -0800 |
commit | a9572072f0ab0ac97e64b0dc01254a3ad95befe1 (patch) | |
tree | 2375e3b4aea11444375f9f587c8ca4cd8d22d6d0 /git-status.sh | |
parent | GIT 0.99.9l aka 1.0rc4 (diff) | |
parent | t/t6022: a new test for renaming merge. (diff) | |
download | tgif-a9572072f0ab0ac97e64b0dc01254a3ad95befe1.tar.xz |
GIT 0.99.9m aka 1.0rc5
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-status.sh')
-rwxr-xr-x | git-status.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-status.sh b/git-status.sh index b90ffc198d..2dda0c505c 100755 --- a/git-status.sh +++ b/git-status.sh @@ -13,7 +13,7 @@ report () { trailer="" while read status name newname do - echo -n "$header" + printf '%s' "$header" header="" trailer="# " @@ -27,7 +27,7 @@ report () { U ) echo "# unmerged: $name";; esac done - echo -n "$trailer" + printf '%s' "$trailer" [ "$header" ] } |