Commit 18e507a39b4ec84f9a8ad075807a5a602261117f

Authored by Benjamin Renard
1 parent e994cf93

Fix bad commit

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/Request/ProcessRequestImpl/Process/ProcessClass.php
... ... @@ -215,8 +215,8 @@ class ProcessClass
215 215 if (!chdir($this->runningPath))
216 216 return false;
217 217  
218   - //if (!$keep_log && file_exists($this->outputFile))
219   - // unlink($this->outputFile);
  218 + if (!$keep_log && file_exists($this->outputFile))
  219 + unlink($this->outputFile);
220 220  
221 221 if (file_exists($this->exitCodeFile))
222 222 unlink($this->exitCodeFile);
... ...