Skip repos that don't have official image tags in update-tag-details.sh

This commit is contained in:
Tianon Gravi 2015-09-09 11:05:09 -07:00
parent f238f110b6
commit 20e289308b
1 changed files with 7 additions and 3 deletions

View File

@ -18,10 +18,14 @@ repos=( "${repos[@]%/}" )
script="$helperDir/generate-tag-details.pl"
for repo in "${repos[@]}"; do
echo -n "$repo ... "
{
IFS=$'\n'
tags=( $(bashbrew list "$repo") )
tags=( $(bashbrew list "$repo" 2>/dev/null || true) )
unset IFS
if [ "${#tags[@]}" -eq 0 ]; then
echo 'skipping'
continue
fi
{
echo "<!-- THIS FILE IS GENERATED VIA '$script' -->"
echo
echo "# Tags of \`$repo\`"