Skip to content

Commit

Permalink
Merge pull request #392 from Healthlane-Technologies/hotfix/release_w…
Browse files Browse the repository at this point in the history
…orkflow

release workflow bug fixes
  • Loading branch information
shahharsh176 authored Sep 27, 2024
2 parents 3823173 + f8beec7 commit a028b0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ def handle(self, *app_labels, **options):
w = Workspace(tenant_obj, None, True)
w.ready()
models_list = self.get_dynamic_config_models(w)
if len(models_list)<1:
self.stdout.write(
"No fixtures found."
)
return
elif self.framework_fixtures:
models_list = ["appauth.UserRoleModel"]

Expand Down
2 changes: 1 addition & 1 deletion backend/src/zango/cli/start_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ 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)}'"

subprocess.run(command, shell=True, check=True)
env_keys = {
Expand Down

0 comments on commit a028b0e

Please sign in to comment.