Skip to content

Commit

Permalink
Fail faster/better
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Apr 15, 2024
1 parent 652edd9 commit b140857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -18,7 +18,7 @@ venv: venv/touchfile

build.stamp: venv .init.stamp sources/config*.yaml $(SOURCES)
rm -rf fonts
(for config in sources/config*.yaml; do . venv/bin/activate; python3 -m notobuilder $$config; done) && touch build.stamp
(for config in sources/config*.yaml; do . venv/bin/activate; python3 -m notobuilder $$config || exit 1; done) && touch build.stamp

.init.stamp: venv
. venv/bin/activate; python3 scripts/first-run.py
Expand Down

0 comments on commit b140857

Please sign in to comment.