From ff0afb8a06c397a3455eb3fc200ae0ba10adc5ba Mon Sep 17 00:00:00 2001 From: Yenchi Lin Date: Tue, 26 Aug 2025 01:57:32 -0700 Subject: [PATCH] fix(makefile): Remove trailing whitespace from line continuations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed trailing spaces after backslashes in CLOUD_RUN_ENV_VARS_LIST definition that were causing "Bad syntax for dict arg" errors when deploying to Cloud Run with gcloud. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d171f16..98de4cc 100644 --- a/Makefile +++ b/Makefile @@ -240,9 +240,9 @@ CLOUD_RUN_ENV_VARS_LIST = \ GIT_VERSION=$(IMAGE_TAG),\ SERVICE_NAME=$(SERVICE_NAME),\ API_BASE_URL=$(API_BASE_URL_FOR_APP),\ - GOOGLE_GENAI_USE_VERTEXAI=TRUE,\ - GOOGLE_CLOUD_PROJECT=$(TARGET_GCP_PROJECT_ID),\ - GOOGLE_CLOUD_LOCATION=us-central1,\ + GOOGLE_GENAI_USE_VERTEXAI=TRUE,\ + GOOGLE_CLOUD_PROJECT=$(TARGET_GCP_PROJECT_ID),\ + GOOGLE_CLOUD_LOCATION=us-central1,\ ADK_MODEL=$(ADK_MODEL) .PHONY: deploy