zitadel/e2e/e2e-setup.sh
2022-07-25 15:24:16 +02:00

18 lines
207 B
Bash
Executable File

#!/bin/bash
set -ex
export projectRoot="."
ENVFILE=$1
if [ -z ${ENVFILE:x} ]; then
echo "Not sourcing any env file"
else
set -a; source $ENVFILE; set +a
fi
env
go run ./cmd/e2e-setup/*.go "$@"