Skip to content

Commit

Permalink
Merge pull request #321 from necusjz/ci-support-data-plane
Browse files Browse the repository at this point in the history
support data-plane in `aaz-dev command-model verify`
  • Loading branch information
kairu-ms committed Dec 19, 2023
2 parents 00c378e + 4c9e405 commit 62c513c
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 62c513c

Please sign in to comment.