From e619cae9446a89e9c74da24b2afb798050967301 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 16 Dec 2020 18:56:08 +0100 Subject: [PATCH] Don't exit on youtube-dl error. --- download-yt-feeds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download-yt-feeds b/download-yt-feeds index 12b750b..a7d1824 100755 --- a/download-yt-feeds +++ b/download-yt-feeds @@ -67,7 +67,7 @@ function main() --playlist-end "${max_videos}" \ ${=ytdl_extra_args} \ "${feed}" - [[ ${?} -eq 0 ]] || die 3 "youtube-dl returned an error." + # [[ ${?} -eq 0 ]] || die 3 "youtube-dl returned an error." done files_after="$(find "${download_dir}" -type f)" while read file; do