mirror of
https://github.com/linuxserver/docker-kometa.git
synced 2026-02-04 19:10:16 +08:00
8 lines
120 B
Bash
Executable File
8 lines
120 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${1:0:1}" = '-' ]; then
|
|
export CLI_OPTIONS_STRING=$(printf "%s|" "$@")
|
|
set --
|
|
fi
|
|
exec /init "$@"
|