From d5b2de8b9ed0cf61a8ccf74d44d296b9cb2557aa Mon Sep 17 00:00:00 2001 From: siddharth Date: Sun, 22 May 2022 13:27:54 -0400 Subject: add Dockerfile --- bin/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bin/Makefile (limited to 'bin/Makefile') diff --git a/bin/Makefile b/bin/Makefile new file mode 100644 index 0000000..49e36a1 --- /dev/null +++ b/bin/Makefile @@ -0,0 +1,12 @@ +SH_FILES=image + +all: check fmt +.PHONY: all + +check: + shellcheck -x ${SH_FILES} +.PHONY: check + +fmt: + shfmt -w -i 4 -s ${SH_FILES} +.PHONY: fmt -- cgit v1.2.3