Make build, check and docs target directory an (optional) argument

Instead of being an option. Feels more natural that way.
This commit is contained in:
KtorZ
2022-12-23 20:23:27 +01:00
parent b1b57406e7
commit 39f5d1a86d
4 changed files with 1 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
all:
@for t in $(shell find . -regex ".*[0-9]\{3\}" -type d | sort); do \
cargo run --quiet -- check -d $${t}; \
cargo run --quiet -- check $${t}; \
echo ""; \
done