From 3d26ddf54e0c6f0a010a67c23fbb63375f0ba641 Mon Sep 17 00:00:00 2001 From: Joy A Date: Mon, 18 Sep 2023 16:18:14 +0530 Subject: [PATCH] #1028, #1096 | Escape $ while determining key env variable names from flavor --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 12b924f64..3afe56efc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -170,13 +170,13 @@ jobs: parameters: keystore_password: type: string - default: "echo $<< pipeline.parameters.flavor >>_KEYSTORE_PASSWORD | tr a-z A-Z" + default: "echo \$<< pipeline.parameters.flavor >>_KEYSTORE_PASSWORD | tr a-z A-Z" key_password: type: string - default: "echo $<< pipeline.parameters.flavor >>_KEY_PASSWORD | tr a-z A-Z" + default: "echo \$<< pipeline.parameters.flavor >>_KEY_PASSWORD | tr a-z A-Z" key_alias: type: string - default: "echo $<< pipeline.parameters.flavor >>_KEY_ALIAS | tr a-z A-Z" + default: "echo \$<< pipeline.parameters.flavor >>_KEY_ALIAS | tr a-z A-Z" docker: - image: cimg/android:2022.12-node working_directory: ~/avni-client