diff options
author | Ben Burdette <bburdette@gmail.com> | 2021-09-22 16:22:53 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2021-09-22 16:22:53 -0600 |
commit | c7e3d830c1f305797b7a4c8b8199ba913d6b8a02 (patch) | |
tree | 7b1be463539f3e27a905470fc1e5c6aa40118586 /src/libcmd/installables.cc | |
parent | 037d53d9d932dab0e24d919e3fcbf1a6c5538030 (diff) |
more debug stuff
Diffstat (limited to 'src/libcmd/installables.cc')
-rw-r--r-- | src/libcmd/installables.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcmd/installables.cc b/src/libcmd/installables.cc index fd3e5cbba..bce666de5 100644 --- a/src/libcmd/installables.cc +++ b/src/libcmd/installables.cc @@ -619,6 +619,10 @@ std::vector<std::shared_ptr<Installable>> SourceExprCommand::parseInstallables( state->evalFile(lookupFileArg(*state, *file), *vFile); else { auto e = state->parseExprFromString(*expr, absPath(".")); + + int x = 5; + std::cout << "x =" << x << std::endl; + state->eval(e, *vFile); } |