mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-09 11:51:59 -04:00
10 lines
263 B
Bash
Executable file
10 lines
263 B
Bash
Executable file
#!/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 "$@"
|