1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-03 02:01:48 +02:00

comment out debugs

This commit is contained in:
Ben Burdette 2021-10-11 16:48:10 -06:00
parent 98eb13691a
commit 427fb8d158
5 changed files with 41 additions and 41 deletions

View file

@ -618,10 +618,10 @@ std::vector<std::shared_ptr<Installable>> SourceExprCommand::parseInstallables(
if (file)
state->evalFile(lookupFileArg(*state, *file), *vFile);
else {
std::cout << "pre parseExprFromString" << std::endl;
// std::cout << "pre parseExprFromString" << std::endl;
auto e = state->parseExprFromString(*expr, absPath("."));
std::cout << "pre eval" << std::endl;
// std::cout << "pre eval" << std::endl;
state->eval(e, *vFile);
}