1
0
Fork 0
yt-mp3-ui/entrypoint.sh
Julien Riou 9c6360e9c4
Fork to yt-mp3-ui
Signed-off-by: Julien Riou <julien@riou.xyz>
2026-07-26 10:25:35 +02:00

10 lines
389 B
Bash
Executable file

#!/bin/sh
set -e
# yt-dlp breaks whenever YouTube changes; refresh to latest before the server
# imports it. A failed update (e.g. no network) must not stop the app from
# starting with the version baked into the image.
python -m pip install --user --upgrade --disable-pip-version-check yt-dlp \
|| echo "yt-dlp auto-update failed; starting with the installed version" >&2
exec "$@"