Skip to content

Commit 941390e

Browse files
committed
fix issue with env length
1 parent 43260ba commit 941390e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

install-bundler/bundler/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ QUEUE_URL=$(grep QUEUE_URL <<< "${GCP_SECRET_CONFIG_VALUE}" \
121121
| sed 's/QUEUE_URL=//g')
122122
BUNDLER_IS_TRUSTWALLET_SETUP=$(grep BUNDLER_IS_TRUSTWALLET_SETUP <<< "${GCP_SECRET_CONFIG_VALUE}" \
123123
| sed 's/BUNDLER_IS_TRUSTWALLET_SETUP=//g')
124-
BUNDLER_FALLBACK_PROVIDER_JSON=$(grep BUNDLER_FALLBACK_PROVIDER_JSON <<< "${GCP_SECRET_CONFIG_VALUE}" \
125-
| sed 's/BUNDLER_FALLBACK_PROVIDER_JSON=//g')
124+
BUNDLER_FALLBACK=$(grep BUNDLER_FALLBACK <<< "${GCP_SECRET_CONFIG_VALUE}" \
125+
| sed 's/BUNDLER_FALLBACK=//g')
126126

127127
if ! kubectl get namespace "${NAMESPACE}"; then
128128
echo "Error: ${NAMESPACE} doesnt exists, creating it now"
@@ -206,7 +206,7 @@ for array_name in $array_names; do
206206
ENCODED_DATASOURCES_JSON=$(echo -n "$DATASOURCES_JSON" | base64)
207207
ENCODED_SOCKET_SERVICE_JSON=$(echo -n "$SOCKET_SERVICE_JSON" | base64)
208208
ENCODED_BUNDLER_IS_TRUSTWALLET_SETUP=$(echo -n "$BUNDLER_IS_TRUSTWALLET_SETUP" | base64)
209-
ENCODED_BUNDLER_FALLBACK_PROVIDER_JSON=$(echo -n "$BUNDLER_FALLBACK_PROVIDER_JSON" | base64)
209+
ENCODED_BUNDLER_FALLBACK_PROVIDER_JSON=$(echo -n "$BUNDLER_FALLBACK" | base64)
210210
echo ""
211211
echo "Deploying HELM chart for $NAME $CHAIN_ID"
212212

0 commit comments

Comments
 (0)