Skip to content

Commit

Permalink
Bump version 0.1.7
Browse files Browse the repository at this point in the history
Fixes typo from last release :(
  • Loading branch information
Nick Logan committed Apr 8, 2017
1 parent 6a6c7f8 commit 1a79bfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"perl" : "6",
"name" : "zef",
"version" : "0.1.6",
"version" : "0.1.7",
"auth" : "github:ugexe",
"description" : "It's like [cpanm] wearing high heels with a tracksuit",
"depends" : [ ],
Expand Down
2 changes: 1 addition & 1 deletion lib/Zef/Distribution/Local.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Zef::Distribution::Local is Zef::Distribution {
my $meta-path = self.find-meta($path) || die "No meta file? Path: {$path}";
my $abspath = $meta-path.parent.absolute;
my %meta = try { %(from-json($meta-path.slurp)) } || die "Invalid json? File: {$meta-path}";
my $IO = $abspath.IO
my $IO = $abspath.IO;
self.bless(:path($abspath), :$IO, |%(%meta.grep(?*.value.elems)));
}

Expand Down

0 comments on commit 1a79bfd

Please sign in to comment.