From 8ba24eee09c94c65d170002f77f865ff6ccb4174 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 04:40:32 -0400 Subject: [PATCH 1/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6555bf2..1fb1049 100644 --- a/README.md +++ b/README.md @@ -134,9 +134,9 @@ Aborted. ## Advanced Usage Sample +![advanced screenshot](https://github.com/kennethreitz/bake/blob/master/ext/screenshot.png?raw=true) - - +Fancy, eh? ## Simple Installation of `bake` (**MacOS**): From f167a38149cf29727c745830c70b2ed2b7a7aaba Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 04:46:53 -0400 Subject: [PATCH 2/6] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1fb1049..66aef27 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ Options: - Environment variables are explicitly passed or whitelisted (allowed), not inherinted from the parent shell. - Unlike `Makefile`, either tabs or 4 spaces can be used. - Tasks can be run safely and reliably. Rest assured that scripts are executed from the project root (e.g. location of the `Bakefile`). +— See [advanced example](https://github.com/kennethreitz/bake#advanced-usage-sample) for further, juicy, details. --------------- From 0e79b41d44b03c1635c145fe255b51bef4e799a0 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 04:48:34 -0400 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66aef27..dff2420 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Options: - Environment variables are explicitly passed or whitelisted (allowed), not inherinted from the parent shell. - Unlike `Makefile`, either tabs or 4 spaces can be used. - Tasks can be run safely and reliably. Rest assured that scripts are executed from the project root (e.g. location of the `Bakefile`). -— See [advanced example](https://github.com/kennethreitz/bake#advanced-usage-sample) for further, juicy, details. +- See [advanced example](https://github.com/kennethreitz/bake#advanced-usage-sample) for further, juicy, details. --------------- From 6101cfe78aa9ff75bd931ca187dfc09bb24d468a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 04:56:30 -0400 Subject: [PATCH 4/6] Update README.md --- README.md | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/README.md b/README.md index dff2420..f5eeb9a 100644 --- a/README.md +++ b/README.md @@ -77,29 +77,6 @@ dangerous-example: @confirm:secure rm -fr * ``` -### `$ bake --list` - -```console - - format - - python-example - - bash-example - - full-install - - install - - argv-example - - python-deps - - node-deps - - system-deps - - dangerous-example -``` - - -### `$ bake --silent format` - -```console -All done! ✨ 🍰 ✨ -7 files left unchanged. -``` - ### `$ bake install` From e867240aa80e24006addf94e7de9afe75f42712f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 04:58:01 -0400 Subject: [PATCH 5/6] Update README.md --- README.md | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index f5eeb9a..f4847cc 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,13 @@ install: node-deps python-deps format: black . +python-deps: + pipenv install +node-deps: + yarn install +system-deps: @confirm + brew install pipenv + python-example: #!/usr/bin/env python import os @@ -59,22 +66,9 @@ python-example: print(os.environ['KEY']) print(sys.argv[1:]) -bash-example: - set -euxe - echo "$KEY" - echo $@ - - -python-deps: - pipenv install -node-deps: - yarn install - -system-deps: @confirm - brew install pipenv - dangerous-example: @confirm:secure - rm -fr * + # Pretend it's deploying to production :P + rm -fr / ``` From 3884b5ef0842af2f8f118931223e6c6b0f4afc2b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 04:58:47 -0400 Subject: [PATCH 6/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4847cc..d38a8f9 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,8 @@ python-example: print(sys.argv[1:]) dangerous-example: @confirm:secure - # Pretend it's deploying to production :P - rm -fr / + # + exit 0 ```