From d6b7d79a214af8c1cc8a0c9bc9c164d9c28fbf24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=BF=20Kenneth=20Reitz?= Date: Wed, 18 Sep 2019 17:53:20 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dd7d397..9e76d8f 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ ## What's in the oven? - A `Bakefile`, which looks and feels like the good parts of a `Makefile`. -- Except, you can write real bash code! +- Except, you can write real `bash` code! - Environment variables are explicitly passed or whitelisted (allowed), not inherited 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. +- There are many other benefits to this design, that have yet to be expressed in this document. ------------------