diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-04-04 09:36:16 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-04 09:35:00 -0700 |
commit | afeb525980e2a7d2f01e4611f61080fbeac18411 (patch) | |
tree | 7ef9582f65c9974c63966116e03383d0af431957 /contrib | |
parent | Update draft release notes to 1.8.3 (diff) | |
download | tgif-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')
-rwxr-xr-x | contrib/remote-helpers/test-bzr.sh | 2 |
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 ' |