Skip to content

Commit 72edd43

Browse files
committed
fix local dir name
1 parent 8907bac commit 72edd43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

veadk/cli/cli_init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from typing import Any
1717

1818
import click
19-
from veadk.version import VERSION
2019

20+
from veadk.version import VERSION
2121

2222
warnings.filterwarnings(
2323
"ignore", category=UserWarning, module="pydantic._internal._fields"
@@ -103,7 +103,7 @@ def init(
103103
shutil.rmtree(target_dir_path)
104104

105105
settings = _render_prompts()
106-
settings["local_dir_name"] = local_dir_name.replace("-", "_")
106+
settings["local_dir_name"] = local_dir_name
107107

108108
if not vefaas_template_type:
109109
vefaas_template_type = "template"

0 commit comments

Comments
 (0)