🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-07 15:59:25 -04:00
parent 0777c29ab9
commit 40d9597bad
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

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