use relative paths in playlist.

This commit is contained in:
tastytea 2020-12-16 18:20:39 +01:00
parent 1ca20f6884
commit 2dc541250e
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ function main()
files_after="$(find "${download_dir}" -type f)"
while read file; do
if [[ ! "${files_before}" =~ "${file}" ]]; then
echo "${file}" >> "${download_dir}/New_$(date +'%F_%R').m3u"
echo "${file/${download_dir}\//}" \
>> "${download_dir}/New_$(date +'%F_%R').m3u"
fi
done <<<"${files_after}"