mirror of
https://github.com/wanderer-industries/wanderer
synced 2026-04-30 22:40:30 +00:00
15 lines
176 B
Bash
15 lines
176 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = 'run' ]; then
|
|
exec /app/bin/wanderer_app start
|
|
|
|
elif [ "$1" = 'db' ]; then
|
|
exec /app/bin/"$2".sh
|
|
else
|
|
exec "$@"
|
|
|
|
fi
|
|
|
|
exec "$@"
|