summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-01-10 09:06:37 -0700
committerSean Whitton <spwhitton@spwhitton.name>2017-01-10 09:06:37 -0700
commitd70c1b3c27c699c5207921579f160a79c341a4e5 (patch)
tree95f963c76d8ad23f26c91cb3d43e9555e296d221 /lib
parent512cf91d0166f1cb024cc3d3517516242cbddf09 (diff)
always inform the user when use single bin
Diffstat (limited to 'lib')
-rw-r--r--lib/DhMakeELPA/Command/Packaging.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/DhMakeELPA/Command/Packaging.pm b/lib/DhMakeELPA/Command/Packaging.pm
index ff6607e..acde0c4 100644
--- a/lib/DhMakeELPA/Command/Packaging.pm
+++ b/lib/DhMakeELPA/Command/Packaging.pm
@@ -109,6 +109,8 @@ sub find_bins {
# fallback: if we failed to figure out the bins, just use a
# single one
if ( scalar %{$self->bins} eq 0) {
+ print "W: Failed to determine binary packages\n";
+ print "W: Falling back to a single binary package\n";
&$single_bin();
}
}