Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #618 from flussence/meta-read-fix
Restore META6.json loading in libpath
  • Loading branch information
niner committed Dec 4, 2015
2 parents f4f505f + aa1906a commit cb7c6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnit/Repository/FileSystem.pm
Expand Up @@ -30,7 +30,7 @@ class CompUnit::Repository::FileSystem does CompUnit::Repository::Locally does C
my $json = from-json $meta.slurp;
if $json<provides>{$name} -> $file {
my $path = $file.IO.is-absolute ?? $file.IO !! $!prefix.child($file);
$found = $path if IO::Path.new-from-absolute-path($path).f;
$found = $path if $path.f;
}
}
# deduce path to compilation unit from package name
Expand Down

0 comments on commit cb7c6f4

Please sign in to comment.