aboutsummaryrefslogtreecommitdiff
path: root/git-rebase--interactive.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-25 11:08:26 -0700
committerJunio C Hamano <gitster@pobox.com>2014-03-25 11:08:27 -0700
commitcf30bfb8fb9e749637a73685a8de9600ab1fbe5f (patch)
tree36f8b3b615071dba63d558ddd9020cedaa825e76 /git-rebase--interactive.sh
parent3e33860aa1c39429ebfe2542adf9011bd2c9aeba (diff)
parentcb1aefda53aac7c5e8bda58ed86f0682730b330b (diff)
downloadgit-cf30bfb8fb9e749637a73685a8de9600ab1fbe5f.tar.gz
git-cf30bfb8fb9e749637a73685a8de9600ab1fbe5f.tar.xz
Merge branch 'us/printf-not-echo'
* us/printf-not-echo: test-lib.sh: do not "echo" caller-supplied strings rebase -i: do not "echo" random user-supplied strings
Diffstat (limited to 'git-rebase--interactive.sh')
-rw-r--r--git-rebase--interactive.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index a1adae831..1c41cbd66 100644
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -749,7 +749,7 @@ rearrange_squash () {
;;
esac
done
- echo "$sha1 $action $prefix $rest"
+ printf '%s %s %s %s\n' "$sha1" "$action" "$prefix" "$rest"
# if it's a single word, try to resolve to a full sha1 and
# emit a second copy. This allows us to match on both message
# and on sha1 prefix