My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc3e4eb
)
remote-bzr: avoid echo -n
author
Felipe Contreras
<felipe.contreras@gmail.com>
Thu, 4 Apr 2013 15:36:16 +0000
(09:36 -0600)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 4 Apr 2013 16:35:00 +0000
(09:35 -0700)
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>
contrib/remote-helpers/test-bzr.sh
patch
|
blob
|
history
diff --git
a/contrib/remote-helpers/test-bzr.sh
b/contrib/remote-helpers/test-bzr.sh
index
70aa8a0
..
b81052b
100755
(executable)
--- 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
'