Update 99-run.sh

This commit is contained in:
Alexandre
2024-01-12 20:45:44 +01:00
committed by GitHub
parent 60238ce610
commit 4cd584ced5

View File

@@ -219,16 +219,16 @@ for f in */; do
if [[ "$LASTVERSION" == "" ]]; then if [[ "$LASTVERSION" == "" ]]; then
# Continue to next # Continue to next
echo "No packages found" echo "No packages found"
continue set_continue=true
fi fi
else else
# Continue to next # Continue to next
echo "No packages found" echo "No packages found"
continue set_continue=true
fi fi
else else
# Continue to next # Continue to next
continue set_continue=true
fi fi
} }
@@ -236,6 +236,11 @@ for f in */; do
LASTVERSION="" LASTVERSION=""
# shellcheck disable=SC2086 # shellcheck disable=SC2086
LASTVERSION="$(lastversion "$UPSTREAM" $ARGUMENTS || test_packages)" LASTVERSION="$(lastversion "$UPSTREAM" $ARGUMENTS || test_packages)"
# Continue if issue
if [[ "${set_continue:-false}" == true ]]; then
continue
fi
fi fi