From d3e40060065177fe8c055626771c1cf16bf8c393 Mon Sep 17 00:00:00 2001 From: sc-idevops Date: Thu, 14 Mar 2024 15:52:27 -0400 Subject: [PATCH] removed slash at the end of the URL which APPARENTLY makes the script fail --- scripts/server_bin/update_bluesky.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server_bin/update_bluesky.sh b/scripts/server_bin/update_bluesky.sh index b819f7b..f93d718 100755 --- a/scripts/server_bin/update_bluesky.sh +++ b/scripts/server_bin/update_bluesky.sh @@ -7,7 +7,7 @@ echo ">>>> Begin Downloads" for i in */; do echo ">> $i" 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" sleep 6 done