Skip to content

Commit

Permalink
Fail fast
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Sep 28, 2023
1 parent 190f6db commit 210846b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
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 210846b

Please sign in to comment.