Welcome to mirror list, hosted at ThFree Co, Russian Federation.

block.test « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a82fd579f6751a8ed7a88505d2c7988eaf3ae5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(
# LINT: missing "&&" after first "echo"
	foo &&
	{
		echo a
		echo b
	} &&
	bar &&
# LINT: missing "&&" at closing "}"
	{
		echo c
	}
	baz
)