diff --git a/README.md b/README.md index 90b2ffc..10c98d3 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,10 @@ install: node-deps python-deps format: black . +inline-python-example: + #!/usr/bin/env python + print('hi') + argv-example: set -euxe echo "HELLO, $WHO" @@ -63,6 +67,7 @@ system-deps: ```console - format + - inline-python-example - full-install - install - env @@ -85,12 +90,12 @@ All done! โœจ ๐Ÿฐ โœจ ### `$ bake install` ```console - ยท Executing 'node-deps': + + Executing 'node-deps': yarn install v1.17.3 [1/4] ๐Ÿ” Resolving packages... success Already up-to-date. โœจ Done in 0.03s. - ยท Executing 'python-deps': + + Executing 'python-deps': Installing dependencies from Pipfile.lock (2ee04c)โ€ฆ ๐Ÿ โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰โ–‰ 8/8 โ€” 00:00:01 ยท Done. @@ -100,18 +105,18 @@ Installing dependencies from Pipfile.lock (2ee04c)โ€ฆ ### `$ bake argv-example WHO=you 1 2 3` ```console -ยท Executing 'argv-example': ++ Executing 'argv-example': ++ echo 'HELLO, you' HELLO, you ++ echo '[1,' 2, '3]' [1, 2, 3] - ยท Done. + + Done. ``` ### `$ bake dangerous-example` ```console -ยท Executing '@confirm:secure' ยท ++ Executing '@confirm:secure' ยท What is 10 times 2?: 7 ยท Aborted. ```