1
0
Fork 0
git/t/chainlint/semicolon.expect
Daniel Baumann 54102a2c29
Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:39 +02:00

19 lines
419 B
Text

2 (
3 cat foo ; ?!LINT: missing '&&'?! echo bar ?!LINT: missing '&&'?!
4 cat foo ; ?!LINT: missing '&&'?! echo bar
5 ) &&
6 (
7 cat foo ; ?!LINT: missing '&&'?! echo bar &&
8 cat foo ; ?!LINT: missing '&&'?! echo bar
9 ) &&
10 (
11 echo "foo; bar" &&
12 cat foo; ?!LINT: missing '&&'?! echo bar
13 ) &&
14 (
15 foo;
16 ) &&
17 (cd foo &&
18 for i in a b c; do
19 echo; ?!LINT: missing '|| exit 1'?!
20 done)