Ignore standard-blackletter in sync-ebooks

This commit is contained in:
Alex Cabal 2021-04-29 16:37:52 -05:00
parent 988d367409
commit 80cc089d4f

View file

@ -197,7 +197,7 @@ if [ "${verbosity}" -gt 0 ]; then
fi fi
# skip the non-ebook repositories by removing their names from the list # skip the non-ebook repositories by removing their names from the list
repoUrls=$(printf "%s" "${repoUrls}" | grep -v -e "/tools.git\$" -e "/web.git\$" -e "/manual.git\$" -e "/sublime-text-se-plugin.git\$" | awk 'NF') repoUrls=$(printf "%s" "${repoUrls}" | grep -v -e "/tools.git\$" -e "/web.git\$" -e "/manual.git\$" -e "/standard-blackletter.git\$" -e "/sublime-text-se-plugin.git\$" | awk 'NF')
# process the list, reading one repository at a time # process the list, reading one repository at a time
printf "%s\n" "${repoUrls}" | while IFS= read -r repoUrl; do printf "%s\n" "${repoUrls}" | while IFS= read -r repoUrl; do
@ -260,4 +260,4 @@ printf "%s\n" "${repoUrls}" | while IFS= read -r repoUrl; do
fi fi
mv "${repoName}" "${properName}" mv "${repoName}" "${properName}"
fi fi
done done