Skip to content

Commit

Permalink
Enhance security exposure patch (#1707)
Browse files Browse the repository at this point in the history
Signed-off-by: Prajyot-Parab <[email protected]>
  • Loading branch information
Prajyot-Parab authored Apr 3, 2024
1 parent c42eab2 commit 982287a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ prerequisites_vpc(){
export PROVIDER_ID_FORMAT=v2
export EXP_CLUSTER_RESOURCE_SET=true
export IBMACCOUNT_ID=${IBMACCOUNT_ID:-"7cfbd5381a434af7a09289e795840d4e"}
export BASE64_API_KEY=$(echo -n $IBMCLOUD_API_KEY | base64)
export BASE64_API_KEY=$(tr -d '\n' <<<"$IBMCLOUD_API_KEY" | base64)
}

main(){
Expand Down Expand Up @@ -199,5 +199,9 @@ main(){
[ -z "${BOSKOS_HOST:-}" ] || release_account >> "$ARTIFACTS/logs/boskos.log" 2>&1
}

if [[ $- =~ x ]]; then
set +x
fi

main "$@"
exit "${test_status}"

0 comments on commit 982287a

Please sign in to comment.