From b427be6b0814861eb2636ed4e951702ff6c0cdf0 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 29 Jul 2022 10:09:28 -0700 Subject: [PATCH] Add make and makesure to readme (#1299) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d1f6cb..d424961 100644 --- a/README.md +++ b/README.md @@ -2218,8 +2218,9 @@ export PATH := "./node_modules/.bin:" + env_var('PATH') There is no shortage of command runners out there! Some more or less similar alternatives to `just` include: +- [make](https://en.wikipedia.org/wiki/Make_(software)): The Unix build tool that inspired `just`. +- [makesure](https://github.com/xonixx/makesure): A simple and portable command runner written in AWK and shell. - [mmake](https://github.com/tj/mmake): A wrapper around `make` with a number of improvements, including remote includes. - - [robo](https://github.com/tj/robo): A YAML-based command runner written in Go. Contributing