mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
chore: add recipe to make all example vivens
This commit is contained in:
parent
3647f2ffa0
commit
8f8d638356
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -27,4 +27,9 @@ docs: docs/demo.gif
|
||||||
docs/%.gif: docs/%.tape
|
docs/%.gif: docs/%.tape
|
||||||
vhs < $<
|
vhs < $<
|
||||||
|
|
||||||
.PHONY: env lint install uninstall bump-version types docs
|
EXAMPLES = cli.py sys_path.py exe_specific.py frozen_import.py named_env.py scrape.py
|
||||||
|
generate-example-vivens:
|
||||||
|
for f in $(EXAMPLES); \
|
||||||
|
do python examples/$$f; done
|
||||||
|
|
||||||
|
.PHONY: env lint install uninstall bump-version types docs generate-example-vivens
|
||||||
|
|
Loading…
Reference in a new issue