summaryrefslogtreecommitdiffstats
path: root/t/chainlint/function.expect
blob: 9e46a3554a1149b8b8cc18884d41288eff703994 (plain)
1
2
3
4
5
6
7
8
9
10
11
2 sha1_file() {
3 	echo "$*" | sed "s#..#.git/objects/&/#"
4 } &&
5 
6 remove_object() {
7 	file=$(sha1_file "$*") &&
8 	test -e "$file" ?!LINT: missing '&&'?!
9 	rm -f "$file"
10 } ?!LINT: missing '&&'?!
11 
12 sha1_file arg && remove_object arg