summaryrefslogtreecommitdiff
path: root/contrib/remote-helpers
diff options
context:
space:
mode:
authorLibravatar Felipe Contreras <felipe.contreras@gmail.com>2013-04-04 09:36:16 -0600
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-04-04 09:35:00 -0700
commitafeb525980e2a7d2f01e4611f61080fbeac18411 (patch)
tree7ef9582f65c9974c63966116e03383d0af431957 /contrib/remote-helpers
parentUpdate draft release notes to 1.8.3 (diff)
downloadtgif-afeb525980e2a7d2f01e4611f61080fbeac18411.tar.xz
remote-bzr: avoid echo -n
It's not portable, as reported by test-lint. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/remote-helpers')
-rwxr-xr-xcontrib/remote-helpers/test-bzr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/remote-helpers/test-bzr.sh b/contrib/remote-helpers/test-bzr.sh
index 70aa8a010a..b81052b61f 100755
--- a/contrib/remote-helpers/test-bzr.sh
+++ b/contrib/remote-helpers/test-bzr.sh
@@ -136,7 +136,7 @@ test_expect_success 'special modes' '
(cd gitrepo &&
git cat-file -p HEAD:link > ../actual) &&
- echo -n content > expected &&
+ printf content > expected &&
test_cmp expected actual
'