diff --git a/lix/libcmd/repl.cc b/lix/libcmd/repl.cc index 06a4c2746..f95bc7595 100644 --- a/lix/libcmd/repl.cc +++ b/lix/libcmd/repl.cc @@ -952,8 +952,7 @@ void NixRepl::initBuiltinCommands() [](NixRepl & repl, const std::string & arg) { Value v = repl.evalString(arg); Value f = repl.evalString( - R""("drv: (import {}).runCommand "shell") "" - R""({ buildInputs = [ drv ]; } "")"" + R"(drv: (import {}).runCommand "shell" { buildInputs = [ drv ]; } "")" ); Value result = repl.state.callFunction(f, v, PosIdx());