From a2a11ed7aa7247cf1521c9466535a29256f14bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Wed, 9 Jan 2019 18:10:26 +0100 Subject: [PATCH] document env var --- env.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/env.sh b/env.sh index 2585e9128..d38b001fb 100755 --- a/env.sh +++ b/env.sh @@ -3,11 +3,13 @@ rel_path="$(dirname $0)" abs_path="$(cd $rel_path; pwd)" -#- make it an absolute path, so we can call this script from other dirs +# make it an absolute path, so we can call this script from other dirs export PATH="${abs_path}/vendor/Nim/bin:$PATH" -#- Nimble needs this to be an absolute path +# Nimble needs this to be an absolute path export NIMBLE_DIR="${abs_path}/vendor/.nimble" + +# used by nim-beacon-chain/tests/simulation/start.sh export BUILD_OUTPUTS_DIR="${abs_path}/build" exec "$@"