From 6495a645df731f5b9640b29c986ab59a7a20ae12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 12 Mar 2019 15:48:39 +0100 Subject: [PATCH] README.md: the "clean" target should never be run in parallel (the second example doesn't do that, but you never know when users might start adding -jN to it) --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 292f333ff..22906a9c6 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,8 @@ Checking out older commits, either to bisect something or to reproduce an older ```bash git checkout -make -j8 clean update +make clean +make -j8 update ``` Running a dependency's test suite using `nim` instead of `nimble` (which cannot be @@ -200,7 +201,8 @@ Sometimes, the build will fail even though the latest CI is green - here are a f * Turn it off and on again: ```bash -make clean update +make clean +make update ``` #### Using Nimble directly