aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-22 12:53:53 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-22 12:53:53 +0000
commitbd1e95c45668aedb39e70d1aae90a9bb86534506 (patch)
tree04bbe2cf3b97d2c7b2fac582eb3380b2ec0f2c30 /README
parent311572e0c1375429de998d70eb7d587d7b8032c4 (diff)
Using .local instead of ./.local in READMEs
Until now, in the instructions, we were suggesting to run `./.local/bin/make', but the `./' part is extra: this is already a directory and so the shell will be able to find it. So to make things more clear and easy to read/write, we removed the `./' part from the calls to our custom Make installation.
Diffstat (limited to 'README')
-rw-r--r--README4
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index ee4bd08..444689a 100644
--- a/README
+++ b/README
@@ -12,7 +12,7 @@ Unix-based environment).
```shell
$ git clone https://gitlab.com/makhlaghi/muse-ultra-diffuse-emitters.git
$ ./configure
-$ ./.local/bin/make -j8
+$ .local/bin/make -j8
```
For a general introduction to reproducible science as implemented in this
@@ -66,5 +66,5 @@ This pipeline was designed to have as few dependencies as possible.
`./.local/bin/nproc`)
```shell
- $ ./.local/bin/make -j8
+ $ .local/bin/make -j8
```