Fixed async handling for new command

This commit is contained in:
2021-11-15 00:20:39 +01:00
parent b3b04f03ce
commit 9ab4013b4b
22 changed files with 61 additions and 46 deletions

View File

@@ -72,6 +72,13 @@ class ConsoleBuilder:
:param workspace:
:return:
"""
src_rel_path = ''
if '/' in project_name:
old_pj_name = project_name
parts = project_name.split('/')
project_name = parts[len(parts) - 1]
src_rel_path = old_pj_name.split(project_name)[0]
project_name_snake = String.convert_to_snake_case(project_name)
if workspace is None: