We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb177eb commit e47bb3cCopy full SHA for e47bb3c
tools/cloud-build/check_running_build.sh
@@ -30,6 +30,14 @@ while [[ "$#" -gt 0 ]]; do
30
done
31
32
if [ -z "$TRIGGER_BUILD_CONFIG_PATH" ]; then
33
+ echo "Error: <trigger_build_config_path> is not provided."
34
+ echo "--- DEBUG: Available Substitutions ---"
35
+ if [ -n "$BUILD_ID" ]; then
36
+ gcloud builds describe "$BUILD_ID" --format='value(substitutions)' || echo "gcloud describe failed"
37
+ else
38
+ echo "BUILD_ID env var is missing. Cannot describe build."
39
+ fi
40
+ echo "---------------------------------------"
41
echo "Usage: $0 [--config <config_path>] <trigger_build_config_path>"
42
exit 1
43
fi
0 commit comments