Merge branch 'master' of github.com:kennethreitz/bashfile

This commit is contained in:
2019-09-16 00:43:23 -04:00
+3 -2
View File
@@ -1,7 +1,9 @@
# ☿ `bake`— a strangely familiar Bash task runner.
I love using `Makefile` for one-off tasks in projects. The problem with doing this, is you can't use familiar bashisms when doing so, as GNU Make doesn't use the familiar Bash syntax. This project seeks to bridge these works.
I love using `Makefile` for one-off tasks in projects. The problem with doing this, is you can't use familiar bashisms 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**
@@ -60,7 +62,6 @@ node-deps:
system-deps: @confirm
brew install pipenv
# This will make you do a simple math question before proceeding.
dangerous-example: @confirm:secure
rm -fr *
```