diff options
Diffstat (limited to 'third_party/git/t/chainlint/nested-subshell.test')
-rw-r--r-- | third_party/git/t/chainlint/nested-subshell.test | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/third_party/git/t/chainlint/nested-subshell.test b/third_party/git/t/chainlint/nested-subshell.test deleted file mode 100644 index 998b05a47d30..000000000000 --- a/third_party/git/t/chainlint/nested-subshell.test +++ /dev/null @@ -1,14 +0,0 @@ -( - cd foo && - ( - echo a && - echo b - ) >file && - - cd foo && - ( -# LINT: nested multi-line subshell not presently checked for missing "&&" - echo a - echo b - ) >file -) |