Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't copy the ENV hash into precomp files
By assigning, rather than binding, we appear not to keep the environment
hash alive.  Fixes #2838
  • Loading branch information
lizmat committed Apr 13, 2019
1 parent 056e455 commit 0990ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnit/Repository/Installation.pm6
Expand Up @@ -9,7 +9,7 @@ class CompUnit::Repository::Installation does CompUnit::Repository::Locally does
has $!precomp-stores;
has $!precomp-store;

my $verbose := nqp::getenvhash<RAKUDO_LOG_PRECOMP>;
my $verbose = nqp::getenvhash<RAKUDO_LOG_PRECOMP>;

submethod BUILD(:$!prefix, :$!lock, :$!WHICH, :$!next-repo --> Nil) { }

Expand Down

0 comments on commit 0990ecc

Please sign in to comment.