]> git.ipfire.org Git - thirdparty/git.git/blame - t/chainlint/one-liner.test
t4108: remove git command upstream of pipe
[thirdparty/git.git] / t / chainlint / one-liner.test
CommitLineData
90a88039
ES
1# LINT: top-level one-liner subshell
2(foo && bar) &&
3(foo && bar) |
4(foo && bar) >baz &&
5
6# LINT: top-level one-liner subshell missing internal "&&"
7(foo; bar) &&
8(foo; bar) |
9(foo; bar) >baz
10
11# LINT: ";" in string not misinterpreted as broken &&-chain
12(foo "bar; baz")