Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make CU's file path absolute
  • Loading branch information
FROGGS committed Sep 1, 2015
1 parent ba2ade8 commit c3a8c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnitRepo.pm
Expand Up @@ -76,7 +76,7 @@ RAKUDO_MODULE_DEBUG("Looking in $spec for $name")
}
}
elsif $file {
CompUnit.new($file).load(GLOBALish, :$line);
CompUnit.new($file.IO.absolute).load(GLOBALish, :$line);
}
elsif self.candidates($module_name, :auth(%opts<auth>), :ver(%opts<ver>)) -> ($candi) {
$candi.load(GLOBALish, :$line)
Expand Down

0 comments on commit c3a8c25

Please sign in to comment.