git/t/chainlint/nested-subshell.test

15 строки
167 B
Plaintext

(
cd foo &&
(
echo a &&
echo b
) >file &&
cd foo &&
(
# LINT: nested multi-line subshell not presently checked for missing "&&"
echo a
echo b
) >file
)