Improved new command to handle existing projects better
This commit is contained in:
parent
b2c5d304f8
commit
9065ef901c
@ -131,7 +131,11 @@ class NewService(CommandABC):
|
|||||||
if self._workspace is None:
|
if self._workspace is None:
|
||||||
project_path = os.path.join(self._env.working_directory, self._project.name)
|
project_path = os.path.join(self._env.working_directory, self._project.name)
|
||||||
else:
|
else:
|
||||||
project_path = os.path.join(self._env.working_directory, 'src', self._project.name)
|
project_path = os.path.join(
|
||||||
|
self._env.working_directory,
|
||||||
|
'src',
|
||||||
|
String.convert_to_snake_case(self._project.name)
|
||||||
|
)
|
||||||
|
|
||||||
if os.path.isdir(project_path) and len(os.listdir(project_path)) > 0:
|
if os.path.isdir(project_path) and len(os.listdir(project_path)) > 0:
|
||||||
Console.error('Project path is not empty\n')
|
Console.error('Project path is not empty\n')
|
||||||
|
Loading…
Reference in New Issue
Block a user