18 lines
357 B
Makefile
18 lines
357 B
Makefile
.PHONY: shellcheck docopt
|
|
|
|
shellcheck:
|
|
@docker run \
|
|
-it \
|
|
--rm \
|
|
-v $$(pwd):/workdir \
|
|
koalaman/shellcheck-alpine \
|
|
shellcheck /workdir/abra-hetzner
|
|
|
|
docopt:
|
|
@if [ ! -d ".venv" ]; then \
|
|
python3 -m venv .venv && \
|
|
.venv/bin/pip install -U pip setuptools wheel && \
|
|
.venv/bin/pip install docopt-sh; \
|
|
fi
|
|
.venv/bin/docopt.sh abra-hetzner
|