check.sh: fail the isRecentInRepo check even if the target is not present on the repo at all

This commit is contained in:
Vojtěch Káně
2025-08-07 19:15:41 +02:00
parent bca4f6aa5a
commit 4c8b53da0c

View File

@@ -38,6 +38,8 @@ isRecentInRepo() {
else
info "$targetName on $repoName is fresh enough"
fi
else
checkNotPassed "$targetName is not present on $repoName"
fi
}