blob: 24d23b3725aaa6725ceec51f949e16091d6061cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: shellcheck
shellcheck:
find ./installer -name "*.sh" -type f -print0 | xargs -0 shellcheck
.PHONY: shellcheck-docker
shellcheck-docker:
find ./installer -name "*.sh" -type f -print0 | xargs -0 docker run -t --rm -v "${PWD}:/mnt" koalaman/shellcheck:stable
.PHONY: shfmt
shfmt:
find ./installer -name "*.sh" -type f -print0 | xargs -0 shfmt -w
|