| 10 | namespace openstudio { |
| 11 | |
| 12 | void OSWorkflow::runCleanup() { |
| 13 | state = State::Cleanup; |
| 14 | |
| 15 | LOG(Info, "Beginning cleanup of the run directory"); |
| 16 | openstudio::workflow::util::cleanup(workflowJSON.absoluteRunDir()); |
| 17 | LOG(Info, "Finished cleanup of the run directory"); |
| 18 | } |
| 19 | |
| 20 | } // namespace openstudio |
nothing calls this directly
no test coverage detected