2022.10.12 - Fixed cpl g existing __init__.py overwrite #116 #118
@ -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')
|
||||||
|
Loading…
Reference in New Issue
Block a user