🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). Log available at irclogs.raku.org/raku/live.html . If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 6 September 2022.
hythm `raku -e '%*ENV<RAKUDO_LOG_PRECOMP> = 1; spurt "/tmp/Foo.rakumod"; $*REPO.install: Distribution::Hash.new( %( :name<Foo>, provides => { "Foo" => "/tmp/Foo.rakumod" } ), prefix => ".".IO ), :force;'` 23:56
`%*ENV<RAKUDO_LOG_PRECOMP>` has no effect on the above command, I expect to see "Compiling ... (Foo) in output, which doesnt happen. 23:57
hythm it works fine if I set the ENV var in the shell before running the command, like `RAKUDO_LOG_PRECOMP=1 ..........` 23:58
my question is why `%*ENV<RAKUDO_LOG_PRECOMP>` in above code doesn't work? 23:59