From 29d066bfdb82a0bdb6d25bf573366c7dfb858eb7 Mon Sep 17 00:00:00 2001 From: Nandini Gattani Date: Sat, 15 Feb 2025 18:37:07 +0530 Subject: [PATCH] bugfix: Error in creating a project * single quotes vs double quotes issue in windows --- backend/src/zango/cli/start_project.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/zango/cli/start_project.py b/backend/src/zango/cli/start_project.py index a2e1a4a9..966eeee3 100644 --- a/backend/src/zango/cli/start_project.py +++ b/backend/src/zango/cli/start_project.py @@ -98,7 +98,8 @@ def create_project( project_template_path = os.path.join( os.path.dirname(zango.cli.__file__), "project_template" ) - command = f"{command} --template '{str(project_template_path)}'" + # command = f"{command} --template '{str(project_template_path)}'" + command = f'{command} --template "{project_template_path}"' subprocess.run(command, shell=True, check=True) env_keys = {