Skip to content

Commit edc11e8

Browse files
committed
fix default env
1 parent e4b8c7f commit edc11e8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/aaz-flow/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def generate_code(
1414
):
1515
"""Generate Azure CLI commands based on Swagger specifications.
1616
"""
17-
aaz_path = os.getenv("AAZ_PATH", "C:\\python\\project\\aaz")
18-
cli_path = os.getenv("CLI_PATH", "C:\\python\\project\\azure-cli")
19-
cli_extension_path = os.getenv("CLI_EXTENSION_PATH", "C:\\python\\project\\azure-cli-extensions")
17+
aaz_path = os.getenv("AAZ_PATH", "/workspaces/aaz")
18+
cli_path = os.getenv("CLI_PATH", "/workspaces/azure-cli")
19+
cli_extension_path = os.getenv("CLI_EXTENSION_PATH", "/workspaces/azure-cli-extensions")
2020

2121
return (
2222
f"Just run the following command in the terminal: 'aaz-dev cli generate-by-swagger-tag --aaz-path {aaz_path} --cli-path {cli_path} --cli-extension-path {cli_extension_path} --extension-or-module-name {extension_or_module_name} --swagger-module-path {swagger_module_path} --resource-provider {resource_provider} --swagger-tag {swagger_tag} --profile latest'",

0 commit comments

Comments
 (0)