We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 172e985 commit d6ae42eCopy full SHA for d6ae42e
Makefile
@@ -1,3 +1,5 @@
1
+.PHONY: install install-bin test
2
+
3
PREFIX ?= /usr
4
BINDIR = $(PREFIX)/bin
5
@@ -7,3 +9,6 @@ install-bin:
7
9
@echo -e '\033[1;32minstalling scripts...\033[0m'
8
10
mkdir -p "$(DESTDIR)$(BINDIR)"
11
install -Dm755 bin/* "$(DESTDIR)$(BINDIR)"
12
13
+test:
14
+ grep -l '^#!/usr/bin/env *sh' bin/* | xargs shellcheck --color
0 commit comments