update start_ide and fix clean thread

This commit is contained in:
stubbfelnewpc
2020-07-08 00:09:40 +02:00
parent 13b50650fa
commit df4befae64
2 changed files with 9 additions and 5 deletions

View File

@@ -257,7 +257,7 @@ fn clean_thread(thread_param: &ThreadRunningParam) {
.unwrap_or_default();
eng.save().unwrap_or_default();
// todo delete container
fs::remove_dir_all(eng.working_folder).unwrap_or_default();
fs::remove_dir_all(&thread_param.ide_folder).unwrap_or_default();
}
fn working_thread(thread_param: &ThreadRunningParam) -> Result<(), Error> {