Welcome to mirror list, hosted at ThFree Co, Russian Federation.

if-condition-split.test « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 240daa9fd5d67db8bd10e0b7d6da9f94d3a6d29f (plain)
1
2
3
4
5
6
7
8
# LINT: "if" condition split across multiple lines at "&&" or "||"
if bob &&
   marcia ||
   kevin
then
	echo "nomads"
	echo "for sure"
fi