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)
This commit is contained in:
Ștefan Talpalaru 2019-03-12 15:48:39 +01:00
parent 83d811ca1c
commit 6495a645df
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
1 changed files with 4 additions and 2 deletions

View File

@ -177,7 +177,8 @@ Checking out older commits, either to bisect something or to reproduce an older
```bash
git checkout <commit hash here>
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