Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
CHANGE-DIRECTORY only takes Str
  • Loading branch information
lizmat committed Dec 22, 2014
1 parent 3fd4600 commit c43d3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnitRepo/Locally.pm
Expand Up @@ -6,7 +6,7 @@ role CompUnitRepo::Locally {
my %instances;

method new(CompUnitRepo::Locally: $dir as Str) {
my $IO := CHANGE-DIRECTORY($dir,$*CWD,&FILETEST-R);
my $IO := CHANGE-DIRECTORY($dir,$*CWD.Str,&FILETEST-R);
return Nil unless $IO;

%instances{$IO.abspath} //=
Expand Down

0 comments on commit c43d3b0

Please sign in to comment.