zitadel/e2e/e2e-setup.sh

18 lines
207 B
Bash
Raw Normal View History

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