singles install was missing -o flag

This commit is contained in:
shockrahwow 2019-12-21 21:19:31 -08:00
parent c3e4aca9ba
commit d15deed7c2

2
ytdl
View File

@ -25,5 +25,5 @@ if echo "$url" | grep -q '&list='; then
elif echo "$url" | grep -q '/sets/'; then
$cmd -o "$outplaylist" "$url"
else
$cmd "$outsingle" "$url"
$cmd -o "$outsingle" "$url"
fi