Skip to content

Commit f84c7c2

Browse files
committed
chore: fix validate_examples.py
1 parent 75f1243 commit f84c7c2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/validate_examples.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,11 @@ def generate_client(folder: Path) -> None:
7070
text=True,
7171
)
7272
except subprocess.CalledProcessError as e:
73-
if "No app specs" in e.stderr:
73+
output = e.stdout + e.stderr
74+
if "No app specs" in output:
7475
logger.warning(f"No app spec found for: {folder}, skipping...")
7576
else:
77+
logger.exception(output)
7678
raise
7779

7880

0 commit comments

Comments
 (0)