Add a Makefile
Add a simple Makefile with a `validate` target to run `shellcheck -a` on the script. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
parent
48c7ea2cc2
commit
cbaca108b9
1 changed files with 7 additions and 0 deletions
7
Makefile
Normal file
7
Makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
SRC := ./BuildSourceImage.sh
|
||||
|
||||
all: validate
|
||||
|
||||
.PHONY: validate
|
||||
validate: $(SRC)
|
||||
shellcheck -a $(SRC)
|
Loading…
Reference in a new issue