Split ytdl_extra_args on whitespace.

This commit is contained in:
tastytea 2020-12-16 18:12:36 +01:00
parent 6b8b02152f
commit 568775eaba

View File

@ -62,7 +62,7 @@ function main()
--dateafter "now-${keep_for_days}days" \
--output "${download_dir}/%(uploader)s/%(title)s.%(ext)s" \
--format "${ytdl_format}" \
"${ytdl_extra_args}" \
${=ytdl_extra_args} \
"${feed}"
done
files_after="$(find "${download_dir}" -type f)"