summaryrefslogtreecommitdiffstats
path: root/t/chainlint/one-liner-for-loop.test
blob: 4bd8c066c799639ba3dcbfb844a90df1fa88fd2e (plain)
1
2
3
4
5
6
7
8
9
10
git init dir-rename-and-content &&
(
	cd dir-rename-and-content &&
	test_write_lines 1 2 3 4 5 >foo &&
	mkdir olddir &&
# LINT: one-liner for-loop missing "|| exit"; also broken &&-chain
	for i in a b c; do echo $i >olddir/$i; done
	git add foo olddir &&
	git commit -m "original" &&
)