mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
8 lines
172 B
Text
8 lines
172 B
Text
|
# LINT: top-level one-liner subshell
|
||
|
! (foo && bar) &&
|
||
|
! (foo && bar) >baz &&
|
||
|
|
||
|
# LINT: top-level one-liner subshell missing internal "&&"
|
||
|
! (foo; bar) &&
|
||
|
! (foo; bar) >baz
|