From fb6a9d2f8d671d74cf76ee8320185e99bff1024a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Fri, 22 May 2020 15:41:50 +0200 Subject: [PATCH] env.sh: print a message when using the system Nim --- scripts/env.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/env.sh b/scripts/env.sh index fce8443..2703a1f 100755 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -33,6 +33,8 @@ export PATH="${NIMBLE_DIR}/bin:${PATH}" #- we can't use native Windows paths in here, because colons can't be escaped in PATH if [[ "$USE_SYSTEM_NIM" != "1" ]]; then export PATH="${NIM_PATH}:${PATH}" +else + echo "[using system Nim: $(which nim)]" fi # used by nim-beacon-chain/tests/simulation/start.sh