This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
abra-capsul/makefile

18 lines
355 B
Makefile
Raw Normal View History

2021-03-10 22:51:42 +00:00
.PHONY: shellcheck docopt
2021-03-10 22:25:27 +00:00
shellcheck:
@docker run \
-it \
--rm \
-v $$(pwd):/workdir \
koalaman/shellcheck-alpine \
2021-07-11 10:28:36 +00:00
shellcheck /workdir/abra-capsul
2021-03-10 22:51:42 +00:00
docopt:
@if [ ! -d ".venv" ]; then \
python3 -m venv .venv && \
.venv/bin/pip install -U pip setuptools wheel && \
.venv/bin/pip install docopt-sh; \
fi
2021-07-11 10:28:36 +00:00
.venv/bin/docopt.sh abra-capsul