Skip to content

Commit

Permalink
Make sure debugging message cannot blow up
Browse files Browse the repository at this point in the history
By applying the same safeguard as a little down in the code
  • Loading branch information
lizmat committed Mar 10, 2020
1 parent 5271d12 commit f48b80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c/CompUnit/PrecompilationRepository.pm6
Expand Up @@ -177,7 +177,7 @@ Need to re-check dependencies.")
nqp::bindkey($resolved,$serialized-id, do {
my $comp-unit := $REPO.resolve($dependency.spec);
$!RMD("Old id: $dependency.id(), new id: {
$comp-unit.repo-id
$comp-unit and $comp-unit.repo-id
}")
if $!RMD;

Expand Down

0 comments on commit f48b80c

Please sign in to comment.