summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/guards.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/guards.in b/bin/guards.in
index 246855a..529cf52 100644
--- a/bin/guards.in
+++ b/bin/guards.in
@@ -166,7 +166,11 @@ if ($check) {
if (exists $files{$patch}) {
$files{$patch}++;
} else {
- print "Not found: $dir$patch\n";
+ if ($config eq '-') {
+ print "Not found: $dir$patch\n";
+ } else {
+ print "Not found in $config: $dir$patch\n";
+ }
$problems++;
}});