summaryrefslogtreecommitdiff
path: root/lib/DhMakeELPA/Command
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-06-24 17:23:56 +0900
committerSean Whitton <spwhitton@spwhitton.name>2016-06-24 17:23:56 +0900
commit98dcb775841aeb4124c1fac520b7c82dd1b9a614 (patch)
tree2346a5ba0a88915b417100021c30146469b5770b /lib/DhMakeELPA/Command
parentbe8316a5a026642103b5e978ca549409d42d525b (diff)
find_bins always inserts list references
Diffstat (limited to 'lib/DhMakeELPA/Command')
-rw-r--r--lib/DhMakeELPA/Command/Packaging.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DhMakeELPA/Command/Packaging.pm b/lib/DhMakeELPA/Command/Packaging.pm
index b01d6cb..815a19a 100644
--- a/lib/DhMakeELPA/Command/Packaging.pm
+++ b/lib/DhMakeELPA/Command/Packaging.pm
@@ -75,7 +75,7 @@ sub find_bins {
@el_files = sort { length $a cmp length $b } @el_files;
my $single_bin = sub {
my $bin = basename($el_files[0]) =~ s/\.el$//r;
- $self->bins({ "$bin" => ("*.el") });
+ $self->bins({ "$bin" => ["*.el"] });
};
if (@el_files == 1) {