t: drop unnecessary terminating semicolon in subshell
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
ed6c994af4
commit
02779185d5
@ -23,7 +23,7 @@ test_expect_success 'ls-tree outside prefix' '
|
|||||||
cat >expect <<-EOF &&
|
cat >expect <<-EOF &&
|
||||||
100644 blob $EMPTY_BLOB ../a[a]/three
|
100644 blob $EMPTY_BLOB ../a[a]/three
|
||||||
EOF
|
EOF
|
||||||
( cd aa && git ls-tree -r HEAD "../a[a]"; ) >actual &&
|
( cd aa && git ls-tree -r HEAD "../a[a]" ) >actual &&
|
||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
'
|
'
|
||||||
|
|
||||||
|
@ -111,10 +111,10 @@ test_expect_success 'diff-tree -r with wildcard' '
|
|||||||
test_expect_success 'setup submodules' '
|
test_expect_success 'setup submodules' '
|
||||||
test_tick &&
|
test_tick &&
|
||||||
git init submod &&
|
git init submod &&
|
||||||
( cd submod && test_commit first; ) &&
|
( cd submod && test_commit first ) &&
|
||||||
git add submod &&
|
git add submod &&
|
||||||
git commit -m first &&
|
git commit -m first &&
|
||||||
( cd submod && test_commit second; ) &&
|
( cd submod && test_commit second ) &&
|
||||||
git add submod &&
|
git add submod &&
|
||||||
git commit -m second
|
git commit -m second
|
||||||
'
|
'
|
||||||
|
@ -328,7 +328,7 @@ test_expect_success 'cvs update (subdirectories)' \
|
|||||||
'(for dir in A A/B A/B/C A/D E; do
|
'(for dir in A A/B A/B/C A/D E; do
|
||||||
mkdir $dir &&
|
mkdir $dir &&
|
||||||
echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
|
echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
|
||||||
git add $dir;
|
git add $dir
|
||||||
done) &&
|
done) &&
|
||||||
git commit -q -m "deep sub directory structure" &&
|
git commit -q -m "deep sub directory structure" &&
|
||||||
git push gitcvs.git >/dev/null &&
|
git push gitcvs.git >/dev/null &&
|
||||||
|
Loading…
Reference in New Issue
Block a user