mirror of
https://github.com/elyby/chrly.git
synced 2024-11-16 18:22:58 +05:30
13 lines
225 B
Bash
Executable File
13 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -d /data/capes ]; then
|
|
mkdir -p /data/capes
|
|
fi
|
|
|
|
if [ "$1" = "serve" ] || [ "$1" = "worker" ] || [ "$1" = "token" ] || [ "$1" = "version" ]; then
|
|
set -- /usr/local/bin/chrly "$@"
|
|
fi
|
|
|
|
exec "$@"
|