33 lines
754 B
Bash
Raw Normal View History

2017-09-09 22:24:42 +05:00
#!/bin/sh
set -e
if [ ! -f "build/env.sh" ]; then
echo "$0 must be run from the root of the repository."
exit 2
fi
# Create fake Go workspace if it doesn't exist yet.
workspace="$PWD/build/_workspace"
root="$PWD"
2019-02-26 15:11:58 -08:00
ethdir="$workspace/src/github.com/kevacoin-project"
if [ ! -L "$ethdir/keva-stratum" ]; then
2017-09-09 22:24:42 +05:00
mkdir -p "$ethdir"
cd "$ethdir"
2019-02-26 15:27:48 -08:00
ln -s ../../../../../. keva-stratum
2017-09-09 22:24:42 +05:00
cd "$root"
fi
# Set up the environment to use the workspace.
# Also add Godeps workspace so we build using canned dependencies.
GOPATH="$workspace"
GOBIN="$PWD/build/bin"
export GOPATH GOBIN
# Run the command inside the workspace.
2019-02-26 15:11:58 -08:00
cd "$ethdir/keva-stratum"
PWD="$ethdir/keva-stratum"
2017-09-09 22:24:42 +05:00
# Launch the arguments with the configured environment.
exec "$@"