diff options
author | Justin Davis <jrcd83@gmail.com> | 2011-12-29 20:51:34 +0100 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2011-12-29 20:51:34 +0100 |
commit | 793280a6f57c52ef720bdba7aa15cd38c8292e25 (patch) | |
tree | 8d0620ffa105e0ee3c2e2ff85fa940acf129cf09 /lib/metas | |
parent | 901c887f6b4858861efc8a06c101d6316f0aef9d (diff) | |
download | genpkg-793280a6f57c52ef720bdba7aa15cd38c8292e25.tar.gz genpkg-793280a6f57c52ef720bdba7aa15cd38c8292e25.tar.xz |
Remove unnecessary regexp anchor.
Diffstat (limited to 'lib/metas')
-rwxr-xr-x | lib/metas/perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/metas/perl b/lib/metas/perl index ba2cfa1..b53cd61 100755 --- a/lib/metas/perl +++ b/lib/metas/perl @@ -86,7 +86,7 @@ http://search.cpan.org/CPAN/authors/id/$cpath END_META - my $file = $cpath; $file =~ s{^.*/}{}; + my $file = $cpath; $file =~ s{.*/}{}; system('perl-dist', $file); return $?; } |