From e9e1f3169e70c0896b21daf1cc81371f92ef45e3 Mon Sep 17 00:00:00 2001 From: ymir Date: Tue, 19 May 2026 20:23:59 +0000 Subject: [PATCH] fix comment --- download-youtube.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/download-youtube.sh b/download-youtube.sh index 1d3ab86..5b92138 100755 --- a/download-youtube.sh +++ b/download-youtube.sh @@ -2,11 +2,12 @@ echo "Downloading youtube song $1" source .env/bin/activate if [ "$2" = "-" ] && [ "$3" = "-" ]; then - echo "using artist $2 and title $3" - python3 download_youtube.py "$1" + echo "Downloading only with url, ignoring artist and title" + python3 download_youtube.py "$1" else echo "Downloading only with url, ignoring artist and title" - python3 download_youtube.py "$@" + echo "using artist $2 and title $3" + python3 download_youtube.py "$@" fi ./process_music.sh