nimbus-eth1/env.sh

17 lines
389 B
Bash
Raw Normal View History

#!/bin/sh
rel_path="$(dirname $0)"
abs_path="$(cd $rel_path; pwd)"
2019-01-09 17:10:26 +00:00
# make it an absolute path, so we can call this script from other dirs
export PATH="${abs_path}/vendor/Nim/bin:$PATH"
2019-01-09 17:10:26 +00:00
# Nimble needs this to be an absolute path
export NIMBLE_DIR="${abs_path}/vendor/.nimble"
2019-01-09 17:10:26 +00:00
# used by nim-beacon-chain/tests/simulation/start.sh
2019-01-09 01:05:54 +00:00
export BUILD_OUTPUTS_DIR="${abs_path}/build"
exec "$@"