From 2830c9aae1263219ef73a8371909dbd673cb9620 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Sep 2019 09:17:51 -0400 Subject: [PATCH] cleanup --- examples/reuse/Bakefile | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/examples/reuse/Bakefile b/examples/reuse/Bakefile index 34fe275..476cbf1 100644 --- a/examples/reuse/Bakefile +++ b/examples/reuse/Bakefile @@ -1,12 +1,10 @@ -hello: - sleep 1 - echo hello +hello: hello/reuse hello/reuse/concurrent + +hello/basic: + echo 'hello' hello/reuse: - bake hello - -hello/reuse/indent: - bake hello/reuse | bake_indent + bake hello/basic hello/reuse/concurrent: - bake hello & bake hello + bake hello/reuse & bake hello/reuse