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 &&
|
||||
100644 blob $EMPTY_BLOB ../a[a]/three
|
||||
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
|
||||
'
|
||||
|
||||
|
@ -111,10 +111,10 @@ test_expect_success 'diff-tree -r with wildcard' '
|
||||
test_expect_success 'setup submodules' '
|
||||
test_tick &&
|
||||
git init submod &&
|
||||
( cd submod && test_commit first; ) &&
|
||||
( cd submod && test_commit first ) &&
|
||||
git add submod &&
|
||||
git commit -m first &&
|
||||
( cd submod && test_commit second; ) &&
|
||||
( cd submod && test_commit second ) &&
|
||||
git add submod &&
|
||||
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
|
||||
mkdir $dir &&
|
||||
echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
|
||||
git add $dir;
|
||||
git add $dir
|
||||
done) &&
|
||||
git commit -q -m "deep sub directory structure" &&
|
||||
git push gitcvs.git >/dev/null &&
|
||||
|
Loading…
Reference in New Issue
Block a user