1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 20:01:15 +02:00

libcmd/repl: Make AbstractNixRepl::create respect its store argument

The only reference (according to clangd) to this function also uses `openStore`,
so this is a no-op.
This commit is contained in:
Sergei Zimmerman 2025-03-23 22:10:43 +00:00
parent bfc05d2e3b
commit 8066e4b0c3
No known key found for this signature in database
GPG key ID: A9B0B557CA632325

View file

@ -839,7 +839,7 @@ std::unique_ptr<AbstractNixRepl> AbstractNixRepl::create(
{
return std::make_unique<NixRepl>(
lookupPath,
openStore(),
std::move(store),
state,
getValues
);