aboutsummaryrefslogtreecommitdiffstats
path: root/source/code.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/code.cpp')
-rw-r--r--source/code.cpp19
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;
}