🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2022-10-07 15:59:25 -04:00
parent 0777c29ab9
commit 40d9597bad

View File

@@ -123,7 +123,19 @@ healthcheck) # Docker healthcheck
if [ $# -eq 0 ]; then
__exec_bash "/bin/bash"
else
__exec_bash "/bin/bash"
case "$1" in
audio)
shift 1
ytda "$@"
;;
video)
shift 1
ytdv "$@"
;;
*)
ytda "$@"
ytdv "$@"
esac
fi
exitCode=$?
;;