From 4c8b53da0ce40745e0e3373e0520176f18aac56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20K=C3=A1n=C4=9B?= Date: Thu, 7 Aug 2025 19:15:41 +0200 Subject: [PATCH] check.sh: fail the isRecentInRepo check even if the target is not present on the repo at all --- check.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/check.sh b/check.sh index f50b6f1..1248511 100755 --- a/check.sh +++ b/check.sh @@ -38,6 +38,8 @@ isRecentInRepo() { else info "$targetName on $repoName is fresh enough" fi + else + checkNotPassed "$targetName is not present on $repoName" fi }