gpt-sovits / entrypoint.sh
hanfish's picture
111
215df2f verified
raw
history blame contribute delete
No virus
180 Bytes
#!/bin/bash
chown -R ${PUID}:${PGID} /opt/alist/
umask ${UMASK}
if [ "$1" = "version" ]; then
./alist version
else
exec su-exec ${PUID}:${PGID} ./alist server --no-prefix
fi