We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f1243 commit f84c7c2Copy full SHA for f84c7c2
scripts/validate_examples.py
@@ -70,9 +70,11 @@ def generate_client(folder: Path) -> None:
70
text=True,
71
)
72
except subprocess.CalledProcessError as e:
73
- if "No app specs" in e.stderr:
+ output = e.stdout + e.stderr
74
+ if "No app specs" in output:
75
logger.warning(f"No app spec found for: {folder}, skipping...")
76
else:
77
+ logger.exception(output)
78
raise
79
80
0 commit comments