diff options
author | Torsten Bögershausen <tboegi@web.de> | 2016-05-09 19:53:12 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-09 11:39:05 -0700 |
commit | a75a30816d30fe4ecad346f8f873861eaebfd66f (patch) | |
tree | 609bce7c19b0a71ef06e4ee83cea3241e2d26b13 /t | |
parent | 765428699a5381f113d19974720bc91b5bfeaf1d (diff) | |
download | git-a75a30816d30fe4ecad346f8f873861eaebfd66f.tar.gz |
t5601: Remove trailing space in sed expressiontb/t5601-sed-fix
The sed expression for IPv6, "Tested User And Host" or "tuah" used a wrong
sed expression, which doesn't work under all versions of sed.
Reported-By: Armin Kunaschik <megabreit@googlemail.com>
Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5601-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh index bfdaf75966..cb5ad72efa 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -445,7 +445,7 @@ test_expect_success 'clone ssh://host.xz:22/~repo' ' #IPv6 for tuah in ::1 [::1] [::1]: user@::1 user@[::1] user@[::1]: [user@::1] [user@::1]: do - ehost=$(echo $tuah | sed -e "s/1]:/1]/ "| tr -d "[]") + ehost=$(echo $tuah | sed -e "s/1]:/1]/" | tr -d "[]") test_expect_success "clone ssh://$tuah/home/user/repo" " test_clone_url ssh://$tuah/home/user/repo $ehost /home/user/repo " |