You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# If we are root, ensure the files in /out are writable
|
|
|
|
# by the dce user and restart the process as the dce user
|
|
|
|
if [ "$(id -u)" = '0' ]; then
|
|
|
|
chown -R dce:dce /out
|
|
|
|
exec su-exec dce "$0" "$@"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exec /opt/app/DiscordChatExporter.Cli "$@"
|