Skip to content

Commit

Permalink
#1028, #1096 | Escape $ while determining key env variable names from…
Browse files Browse the repository at this point in the history
… flavor
  • Loading branch information
1t5j0y committed Sep 18, 2023
1 parent 73fb58a commit 3d26ddf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3d26ddf

Please sign in to comment.