diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-05-22 13:29:45 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-05-22 13:29:45 -0400 |
commit | 660d967ec0ac79ea2a43946be4c056ef2d21ffc4 (patch) | |
tree | 63bb27d5b762b2a0dc77861a649fe109095a31d7 /source/code.cpp | |
parent | 1b176cf6cd75c8031a140961655cdd3c16589a68 (diff) |
bug fixes; dynamic time measure; sync sample drawing
Diffstat (limited to 'source/code.cpp')
-rw-r--r-- | source/code.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/source/code.cpp b/source/code.cpp index 14f603c..8e3bd6c 100644 --- a/source/code.cpp +++ b/source/code.cpp @@ -134,18 +134,17 @@ std::string newTempFileName() bool codeExecuteCommand(const std::string& command, const std::string& file) { bool success = system(command.c_str()) == 0; - if (success) { - if (std::ifstream output (file); output.good()) { - std::ostringstream sstr; - sstr << output.rdbuf(); - log(sstr.str().c_str()); - } else { - log("Could not read command output!"); - } - - std::filesystem::remove(file); + + if (std::ifstream output (file); output.good()) { + std::ostringstream sstr; + sstr << output.rdbuf(); + log(sstr.str().c_str()); + } else { + log("Could not read command output!"); } + std::filesystem::remove(file); + return success; } |