diff options
author | Jeff King <peff@peff.net> | 2015-12-01 17:20:52 -0500 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2015-12-01 17:20:52 -0500 |
commit | 76fdb0640e4a3b305e1d1eaf9d9c3726cd9f7128 (patch) | |
tree | 45a4efb44b718a9d75559831dc1a04130a243e36 | |
parent | Merge branch 'dk/rerere-train-quoting' into maint (diff) | |
parent | t5813: avoid creating urls that break on cygwin (diff) | |
download | tgif-76fdb0640e4a3b305e1d1eaf9d9c3726cd9f7128.tar.xz |
Merge branch 'dk/t5813-unc-paths' into maint
Test portability fix for a topic in v2.6.1.
* dk/t5813-unc-paths:
t5813: avoid creating urls that break on cygwin
-rwxr-xr-x | t/t5813-proto-disable-ssh.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5813-proto-disable-ssh.sh b/t/t5813-proto-disable-ssh.sh index ad877d774a..a954ead8af 100755 --- a/t/t5813-proto-disable-ssh.sh +++ b/t/t5813-proto-disable-ssh.sh @@ -14,7 +14,7 @@ test_expect_success 'setup repository to clone' ' ' test_proto "host:path" ssh "remote:repo.git" -test_proto "ssh://" ssh "ssh://remote/$PWD/remote/repo.git" -test_proto "git+ssh://" ssh "git+ssh://remote/$PWD/remote/repo.git" +test_proto "ssh://" ssh "ssh://remote$PWD/remote/repo.git" +test_proto "git+ssh://" ssh "git+ssh://remote$PWD/remote/repo.git" test_done |