mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 23:43:40 +00:00
18 lines
207 B
Bash
Executable File
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 "$@"
|