fetch_gaidao.sh: Do not try to download nothingness.

This commit is contained in:
tastytea 2019-07-22 15:02:42 +02:00
parent 44a918d349
commit 65a498f2f7
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ for ausgabe in ${ausgaben}; do
url=$(curl -s "${ausgabe}" \
| grep -Eo 'https://fda-ifa.org/wp-content/uploads/[0-9]{4}/[0-9]{2}/[^ ]*\.epub')
file=$(echo "${url}" | grep -o '[^/]*\.epub')
if [ ! -e "${file}" ]; then
if [ -n "${file}" ] && [ ! -e "${file}" ]; then
echo "Downloading Gai Dao: ${file}."
curl -so "${file}" "${url}"
fi