erigon-pulse/build/env.sh

12 lines
207 B
Bash
Executable File

#!/bin/sh
set -e
if [ ! -f "build/env.sh" ]; then
echo "$0 must be run from the root of the repository."
exit 2
fi
# Launch the arguments with the configured environment.
GO111MODULE=on exec "$@"