update-kernel/Makefile
Vitaly Chikunov 7669f9c1ef Add simple bash_completion script
Signed-off-by: Vitaly Chikunov <vt@altlinux.org>
2022-10-06 05:17:58 +03:00

18 lines
370 B
Makefile

check:
bash -n update-kernel
bash -n remove-old-kernels
bash -n analyze-kmodules
bash -n bash_completion
shellcheck -x update-kernel remove-old-kernels analyze-kmodules
shellcheck -s bash bash_completion
docker-build:
docker build .
docker: docker-build
docker run --rm -it `docker images --format '{{.ID}}' | head -1`
test: check docker-build
.PHONY: check