This commit is contained in:
Sven Heidemann 2021-03-11 09:43:45 +01:00
parent 82ffdfe278
commit 2ad97d5021

View File

@ -46,7 +46,6 @@ class Generate(CommandABC):
name = parts[len(parts) - 1] name = parts[len(parts) - 1]
file_path = os.path.join(self._runtime.working_directory, rel_path, f'{String.convert_to_snake_case(name)}.py') file_path = os.path.join(self._runtime.working_directory, rel_path, f'{String.convert_to_snake_case(name)}.py')
print(file_path)
if not os.path.isdir(os.path.dirname(file_path)): if not os.path.isdir(os.path.dirname(file_path)):
os.makedirs(os.path.dirname(file_path)) os.makedirs(os.path.dirname(file_path))
@ -81,19 +80,19 @@ class Generate(CommandABC):
self._generate_abc(name) self._generate_abc(name)
elif schematic == 'class': elif schematic == 'class':
print(schematic) pass
elif schematic == 'configmodel': elif schematic == 'configmodel':
print(schematic) pass
elif schematic == 'enum': elif schematic == 'enum':
print(schematic) pass
elif schematic == 'service': elif schematic == 'service':
print(schematic) pass
else: else:
Console.error('') self._help('Usage: cpl generate <schematic> [options]')
exit() exit()
Console.write('\n') Console.write('\n')