We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ff9d0a commit 773e443Copy full SHA for 773e443
1 file changed
scripts/generate_types.sh
@@ -92,13 +92,15 @@ else
92
# Validate that the remote URL is accessible
93
echo " - Validating remote URL..."
94
if ! curl --fail --silent --head "$REMOTE_URL" >/dev/null 2>&1; then
95
- echo "" >&2
96
- echo "Error: Unable to access A2A specification at version '$A2A_SPEC_VERSION'" >&2
97
- echo "URL: $REMOTE_URL" >&2
98
99
- echo "The version may not exist. Available versions can be found at:" >&2
100
- echo " https://github.com/a2aproject/A2A/tags" >&2
101
+ cat >&2 <<EOF
+
+Error: Unable to access A2A specification at version '$A2A_SPEC_VERSION'
+URL: $REMOTE_URL
+The version may not exist. Available versions can be found at:
+ https://github.com/a2aproject/A2A/tags
102
103
+EOF
104
exit 1
105
fi
106
0 commit comments