From 543c514ad3d22c07da856ce43b1c7593db0a7bdb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 00:52:32 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9562a09..36c08dc 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ I love using `Makefile` for one-off tasks in projects. The problem with doing th It is, thus far, successful in doing so. +![vanity image](https://github.com/kennethreitz/bake/blob/master/ext/img.jpg?raw=true) + **WORK IN PROGRESS** ```console From af6b08c074c1da0aff7d4f40c67457da25abb793 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 00:53:01 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 36c08dc..4393caa 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,10 @@ I love using `Makefile` for one-off tasks in projects. The problem with doing this, is you can't use familiar bash–isms when doing so, as GNU Make doesn't use the familiar Bash syntax. This project seeks to bridge these worlds. -It is, thus far, successful in doing so. +**WORK IN PROGRESS** ![vanity image](https://github.com/kennethreitz/bake/blob/master/ext/img.jpg?raw=true) -**WORK IN PROGRESS** - ```console $ bake -h Usage: bake [OPTIONS] [TASK] [ARGUMENTS]... From f4e032b81efba20876df0196484c372ebd8a280f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 00:54:44 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4393caa..46b8ed3 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ Usage: bake [OPTIONS] [TASK] [ARGUMENTS]... Options: -b, --bakefile PATH The Bakefile to use. - -l, --list Lists available tasks from Bakefile. + -l, --list Lists available tasks. --allow TEXT Whitelist an environment variable for use. --yes Set medium–security prompts to yes. - -c, --continue Fail immediately, if any task fails. - --insecure Use parent shell's environment variables. + -c, --continue Continue, if a task fails. + --insecure Inherit parent shell's environment variables. -s, --silent Reduce output. - -e, --environ-json TEXT Environment variables, in JSON format. + -e, --environ-json TEXT Provide environment variables via JSON. -j, --json Output in JSON format (stdout). -h, --help Show this message and exit. ```