From 04d154b960b99e336fceddadccc1fc1be5015ebb Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Sun, 1 Feb 2026 17:06:49 -0500 Subject: [PATCH] suppress success message --- bin/validate-unified-files | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/validate-unified-files b/bin/validate-unified-files index 8190cb6..053affc 100755 --- a/bin/validate-unified-files +++ b/bin/validate-unified-files @@ -232,7 +232,8 @@ if (!$quiet) { if ($warnings) { print "validate-unified-files: $warnings warning(s)\n"; } else { - print "validate-unified-files: OK (no stray files)\n"; + # This runs from cron; don't print anything on success + # print "validate-unified-files: OK (no stray files)\n"; } }