Fixed cpl g existing __init__.py overwrite #116

This commit is contained in:
Sven Heidemann 2022-09-19 23:10:10 +02:00
parent df3f9f0306
commit 49e3bddc91

View File

@ -153,18 +153,24 @@ class GenerateService(CommandABC):
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))
directory = '' directory = ''
print()
for subdir in template.path.split('/'): for subdir in template.path.split('/'):
directory = os.path.join(directory, subdir) directory = os.path.join(directory, subdir)
if subdir != 'src': if subdir == 'src':
file = InitTemplate(class_name, schematic, self._schematics[schematic]["Upper"], rel_path) continue
Console.spinner(
f'Creating {os.path.abspath(directory)}/{file.name}', file = InitTemplate(class_name, schematic, self._schematics[schematic]["Upper"], rel_path)
self._create_file, if os.path.exists(os.path.join(os.path.abspath(directory), file.name)):
os.path.join(os.path.abspath(directory), file.name), continue
file.value,
text_foreground_color=ForegroundColorEnum.green, Console.spinner(
spinner_foreground_color=ForegroundColorEnum.cyan f'Creating {os.path.abspath(directory)}/{file.name}',
) self._create_file,
os.path.join(os.path.abspath(directory), file.name),
file.value,
text_foreground_color=ForegroundColorEnum.green,
spinner_foreground_color=ForegroundColorEnum.cyan
)
if os.path.isfile(file_path): if os.path.isfile(file_path):
Console.error(f'{String.first_to_upper(schematic)} already exists!\n') Console.error(f'{String.first_to_upper(schematic)} already exists!\n')