mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 14:50:19 +00:00
19 lines
179 B
Plaintext
19 lines
179 B
Plaintext
//two:
|
|
one/two/three/four:
|
|
one/two/:
|
|
|
|
echo:
|
|
echo ${1}
|
|
|
|
echo/dep: dep
|
|
bake echo ${1} | red
|
|
|
|
dep:
|
|
echo 'Installing dep…'
|
|
exit 0
|
|
|
|
fail:
|
|
exit 1
|
|
|
|
deps/fail: fail
|