Fixed generate service

This commit is contained in:
Sven Heidemann 2022-05-25 15:11:42 +02:00
parent 98847495e6
commit ed69f52927

View File

@ -137,7 +137,7 @@ class GenerateService(CommandABC):
rel_path = '/'.join(parts[:-1])
class_name = parts[len(parts) - 1]
if 'src' not in rel_path:
if 'src' not in rel_path and not os.path.exists(os.path.join(self._env.working_directory, rel_path)):
rel_path = f'src/{rel_path}'
template = template(class_name, schematic, self._schematics[schematic]["Upper"], rel_path)