mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 17:17:32 +00:00
17 lines
237 B
Bash
17 lines
237 B
Bash
#!/bin/bash
|
|
|
|
case $@ in
|
|
sh*)
|
|
${@:3}
|
|
;;
|
|
bash*)
|
|
${@:5}
|
|
;;
|
|
*)
|
|
if [[ ! -z "$@" ]]
|
|
then
|
|
ZITADEL_ARGS="$@"
|
|
fi
|
|
/app/zitadel ${ZITADEL_ARGS}
|
|
;;
|
|
esac |