t5608-clone-2gb.sh: turn GIT_TEST_CLONE_2GB into a bool
[git] / t / chainlint / command-substitution.test
1 (
2         foo &&
3 # LINT: closing ")" of $(...) not misinterpreted as subshell-closing ")"
4         bar=$(gobble) &&
5         baz
6 ) &&
7 (
8 # LINT: missing "&&" on $(...)
9         bar=$(gobble blocks)
10         baz
11 )