removed slash at the end of the URL which APPARENTLY makes the script fail

This commit is contained in:
Stefen Auris 2024-03-14 15:52:27 -04:00
parent 312b470c4a
commit d3e4006006

View file

@ -7,7 +7,7 @@ echo ">>>> Begin Downloads"
for i in */; do for i in */; do
echo ">> $i" echo ">> $i"
date date
gallery-dl --sleep 1-3 --abort 3 "https://bsky.app/profile/$i" || echo "$i" >> ~/bsky_error.txt gallery-dl -u steveokard@gmail.com -p `cat ~/.gallery-dl/bsky-secret.txt` --sleep 1-3 --abort 3 "https://bsky.app/profile/${i/\/}" || echo "$i" >> ~/bsky_error.txt
echo " << waiting" echo " << waiting"
sleep 6 sleep 6
done done