summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-08-03 14:38:37 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-08-03 14:53:44 +0100
commit9b6abc0738dde6c9fd71cf33ead7262fc00c57f9 (patch)
tree485db214bae35089f0415d35bb7107e95520d68c /dgit
parent666278d3724ee2f7b3f75272a9735c5bb4176575 (diff)
dgit: Improve error message for unknown suite, to suggest -d
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index ddc2d6c..29d29d1 100755
--- a/dgit
+++ b/dgit
@@ -1078,7 +1078,7 @@ sub canonicalise_suite_ftpmasterapi {
} qw(codename name);
push @matched, $entry;
}
- fail "unknown suite $isuite" unless @matched;
+ fail "unknown suite $isuite, maybe -d would help" unless @matched;
my $cn;
eval {
@matched==1 or die "multiple matches for suite $isuite\n";