summaryrefslogtreecommitdiffstats
path: root/bin/Makefile
blob: 3282a34c80286acf23943daf84097368a590b31f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
SH_FILES=image image-push

all: check fmt
.PHONY: all

check:
	shellcheck -x ${SH_FILES}
.PHONY: check

fmt:
	shfmt -w -i 4 -s ${SH_FILES}
.PHONY: fmt