diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2018-07-01 20:24:01 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-16 14:38:47 -0700 |
commit | 51b85471af1d2df88749e8a7aa424a879e33a9d7 (patch) | |
tree | aaaffc3d661ac6e36e713d09bc057551ae32b3c7 /t/t5601-clone.sh | |
parent | f957f03b60163ffdc346cce44a67b0347a51190b (diff) | |
download | git-51b85471af1d2df88749e8a7aa424a879e33a9d7.tar.gz |
t5000-t5999: fix broken &&-chains
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5601-clone.sh')
-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 0b62037744..ddaa96ac4f 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -618,7 +618,7 @@ hex2oct () { test_expect_success 'clone on case-insensitive fs' ' git init icasefs && ( - cd icasefs + cd icasefs && o=$(git hash-object -w --stdin </dev/null | hex2oct) && t=$(printf "100644 X\0${o}100644 x\0${o}" | git hash-object -w -t tree --stdin) && |