Skip to content

Commit

Permalink
Fix unitialized value stringification warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ugexe committed Jun 22, 2017
1 parent 4693ec8 commit bde2820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnit/Repository/FileSystem.pm
Expand Up @@ -197,7 +197,7 @@ class CompUnit::Repository::FileSystem does CompUnit::Repository::Locally does C
return $.prefix.add( %!meta<files><<$key>> )
if %!meta<files> && %!meta<files><<$key>>;
return $.prefix.add( $key )
if %!meta<resources>.first({ $_ eq $key.subst(/^resources\//, "") });
if %!meta<resources> && %!meta<resources>.first({ $_ eq $key.subst(/^resources\//, "") });

# When $.prefix is presumably the 'lib' folder (eg. -Ilib)
return $.prefix.parent.add($key);
Expand Down

0 comments on commit bde2820

Please sign in to comment.