cbaca108b9
Add a simple Makefile with a `validate` target to run `shellcheck -a` on the script. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
7 lines
101 B
Makefile
7 lines
101 B
Makefile
SRC := ./BuildSourceImage.sh
|
|
|
|
all: validate
|
|
|
|
.PHONY: validate
|
|
validate: $(SRC)
|
|
shellcheck -a $(SRC)
|