8 lines
101 B
Makefile
8 lines
101 B
Makefile
|
SRC := ./BuildSourceImage.sh
|
||
|
|
||
|
all: validate
|
||
|
|
||
|
.PHONY: validate
|
||
|
validate: $(SRC)
|
||
|
shellcheck -a $(SRC)
|