git/t/chainlint/block.test

15 lines
143 B
Plaintext
Raw Normal View History

(
# LINT: missing "&&" after first "echo"
foo &&
{
echo a
echo b
} &&
bar &&
# LINT: missing "&&" at closing "}"
{
echo c
}
baz
)