Skip to content

Commit

Permalink
chore: support model from data-plane
Browse files Browse the repository at this point in the history
  • Loading branch information
necusjz committed Dec 18, 2023
1 parent 00c378e commit 4c9e405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aaz_dev/command/api/_cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def verify_command(file_path, node):

for root, dirs, files in os.walk(aaz.resources_folder):
for file in files:
if not file.endswith(".json"):
if not file.endswith(".json") or file.startswith("client"): # support data-plane
continue

file_path = os.path.join(root, file)
Expand Down

0 comments on commit 4c9e405

Please sign in to comment.