diff --git a/Makefile b/Makefile index a3d3765..8c292cc 100644 --- a/Makefile +++ b/Makefile @@ -6,20 +6,23 @@ $(TARGETS): ./scripts/$@ run: #clean build - ./bin/bashful run example/11-tags.yml --tags some-app1 + ./dist/bashful run example/11-tags.yml --tags some-app1 examples: - ./bin/bashful run example/00-demo.yml - ./bin/bashful run example/01-simple.yml - ./bin/bashful run example/02-simple-and-pretty.yml - ./bin/bashful run example/03-repetitive.yml - ./bin/bashful run example/04-repetitive-parallel.yml - ./bin/bashful run example/05-minimal.yml - ./bin/bashful run example/06-with-errors.yml - ./bin/bashful run example/07-from-url.yml - ./bin/bashful run example/08-complicated.yml - ./bin/bashful run example/09-stress-and-flow-control.yml - ./bin/bashful run example/10-bad-values.yml || true + ./dist/bashful run example/00-demo.yml + ./dist/bashful run example/01-simple.yml + ./dist/bashful run example/02-simple-and-pretty.yml + ./dist/bashful run example/03-repetitive.yml + ./dist/bashful run example/04-repetitive-parallel.yml + ./dist/bashful run example/05-minimal.yml + ./dist/bashful run example/06-with-errors.yml || true + # ./dist/bashful run example/07-from-url.yml || true + ./dist/bashful run example/08-complicated.yml || true + # ./dist/bashful run example/09-stress-and-flow-control.yml + ./dist/bashful run example/10-bad-values.yml || true + ./dist/bashful run example/11-tags.yml --tags some-app1 + ./dist/bashful run example/11-tags.yml --only-tags migrate + ./dist/bashful run example/12-share-variables.yml clean: - rm -f bin/bashful build.log + rm -f dist/bashful build.log