Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix undefined warnings on throwing "Could not find module" errors
  • Loading branch information
niner committed Nov 15, 2015
1 parent f2193cc commit 47add65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnit/DependencySpecification.pm
Expand Up @@ -5,7 +5,7 @@ class CompUnit::DependencySpecification {
has $.api-matcher = True;

method Str(CompUnit::DependencySpecification:D:) {
return "{$.short-name}:ver<{$.version-matcher}>:auth<{$.auth-matcher}>:api<{$.api-matcher}>";
return "{$.short-name}:ver<{$.version-matcher // 'True'}>:auth<{$.auth-matcher // 'True'}>:api<{$.api-matcher // 'True'}>";
}
}

Expand Down

0 comments on commit 47add65

Please sign in to comment.