nimbus-eth1/env.sh
Ștefan Talpalaru a2a11ed7aa document env var
2019-01-09 22:26:40 +02:00

16 lines
388 B
Bash
Executable File

#!/bin/sh
rel_path="$(dirname $0)"
abs_path="$(cd $rel_path; pwd)"
# 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
export NIMBLE_DIR="${abs_path}/vendor/.nimble"
# used by nim-beacon-chain/tests/simulation/start.sh
export BUILD_OUTPUTS_DIR="${abs_path}/build"
exec "$@"