7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
24 lines
491 B
Text
24 lines
491 B
Text
(
|
|
# LINT: nested one-liner subshell
|
|
(foo && bar) &&
|
|
(foo && bar) |
|
|
(foo && bar) >baz &&
|
|
|
|
# LINT: nested one-liner subshell missing internal "&&"
|
|
(foo; bar) &&
|
|
(foo; bar) |
|
|
(foo; bar) >baz &&
|
|
|
|
# LINT: nested one-liner subshell with "|| exit"
|
|
(foo || exit 1) &&
|
|
(foo || exit 1) |
|
|
(foo || exit 1) >baz &&
|
|
|
|
# LINT: nested one-liner subshell lacking ending "&&"
|
|
(foo && bar)
|
|
|
|
# LINT: nested one-liner subshell missing internal "&&" and lacking ending "&&"
|
|
(foo && bar; baz)
|
|
|
|
foobar
|
|
)
|