From 601cc690285e9cc8814e3d2defa3d7db5e238144 Mon Sep 17 00:00:00 2001 From: Quentin Nerden Date: Sun, 4 Oct 2020 22:28:47 +0200 Subject: [PATCH] Fix readme documentation for ignoring errors (#692) The example justfile omitted the `-`. --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 76a715e..e794701 100644 --- a/README.adoc +++ b/README.adoc @@ -445,7 +445,7 @@ continue execution after a command, even if it fails, prefix the command with ```make foo: - cat foo + -cat foo echo 'Done!' ```