summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2015-04-29 10:56:34 +0200
committerJean Delvare <jdelvare@suse.de>2015-04-29 10:56:34 +0200
commita0dfb9956600407fc44f882151bf169c8b653a7d (patch)
tree00715988c6b8e34382febde3a7eab36c11c1b19e /bin
parent045e327cb14d1969fe93b44e4d307459a50777a2 (diff)
downloadquilt-a0dfb9956600407fc44f882151bf169c8b653a7d.tar.gz
guards: Clarify user message
When --config=series is used and a listed file is not found on the disk, guards prints the following message: Not found in series: file This message is confusing, as the file was found in series, it is missing on the disk. Change the message to make this more obvious.
Diffstat (limited to 'bin')
-rw-r--r--bin/guards.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/guards.in b/bin/guards.in
index 0c20372..1c1605b 100644
--- a/bin/guards.in
+++ b/bin/guards.in
@@ -169,7 +169,7 @@ if ($check) {
if ($config eq '-') {
print "Not found: $dir$patch\n";
} else {
- print "Not found in $config: $dir$patch\n";
+ print "In $config but not found: $dir$patch\n";
}
$problems++;
}});