From bd1e95c45668aedb39e70d1aae90a9bb86534506 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Thu, 22 Nov 2018 12:53:53 +0000 Subject: 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. --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README') 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 ``` -- cgit v1.2.1