mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
18 lines
238 B
Bash
18 lines
238 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
case $@ in
|
||
|
sh*)
|
||
|
${@:3}
|
||
|
;;
|
||
|
bash*)
|
||
|
${@:5}
|
||
|
;;
|
||
|
*)
|
||
|
if [[ ! -z "$@" ]]
|
||
|
then
|
||
|
ZITADEL_ARGS="$@"
|
||
|
fi
|
||
|
/app/zitadel ${ZITADEL_ARGS}
|
||
|
;;
|
||
|
esac
|