Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #681 from dwarring/patch-2
Ensure uniqueness of precomp dependencies.
  • Loading branch information
niner committed Jan 11, 2016
2 parents aefe2c2 + 98ee2da commit 42a5832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnit/PrecompilationRepository.pm
Expand Up @@ -123,7 +123,7 @@ class CompUnit::PrecompilationRepository::Default does CompUnit::PrecompilationR
%ENV.DELETE-KEY(<RAKUDO_PRECOMP_LOADING>);
%ENV<RAKUDO_PRECOMP_DIST> = $current_dist;

my @result = $proc.out.lines;
my @result = $proc.out.lines.unique;
if not $proc.out.close or $proc.status { # something wrong
self.store.unlock;
push @result, "Return status { $proc.status }\n";
Expand Down

0 comments on commit 42a5832

Please sign in to comment.