auto_build_launcher/scripts/project_end.py

9 lines
183 B
Python

from scripts.task import Task
from utils import FileUtils
class ProjectEnd(Task):
def execute(self):
FileUtils.delete(self.context.temp_project_path, True)
pass