mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
17 lines
446 B
Plaintext
17 lines
446 B
Plaintext
hello: hello/reuse hello/reuse/concurrent
|
|
echo "You just ran $(red 'hello') directly, then indirectly (via bake+bash; 6 times, concurrently!)"
|
|
hello/basic:
|
|
sleep 2
|
|
echo "[$(red $(uuidgen))] hello!"
|
|
hello/reuse:
|
|
bake hello/basic
|
|
|
|
hello/reuse/concurrent:
|
|
set -ex && \
|
|
bake hello/reuse &
|
|
bake hello/reuse &
|
|
bake hello/reuse &
|
|
bake hello/reuse &
|
|
bake hello/reuse &
|
|
bake hello/reuse
|