From 12db032b558efe13dd4fcc3f420df5d765800b9b Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Wed, 17 Jul 2024 12:59:31 -0700 Subject: [PATCH] circle: bug fix for bash var setting syntax [skip ci] for #1089 --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ae1d947..90a3d4c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -100,9 +100,9 @@ jobs: # for the default service. # https://issuetracker.google.com/issues/347268867 if [[ $service == 'app' ]]; then - nocache = '--no-cache' + nocache='--no-cache' fi - echo gcloud -q app deploy $nocache --project bridgy-federated << pipeline.parameters.service >>.yaml index.yaml queue.yaml + gcloud -q app deploy $nocache --project bridgy-federated index.yaml queue.yaml << pipeline.parameters.service >>.yaml fi