Skip to content

Commit

Permalink
Fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusdeMelo committed Jun 26, 2024
1 parent 0d69078 commit efaa75b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fi

provision_json_workload_resource_tags=$(jq --raw-input --raw-output '[ split(",") | .[] | "Key=" + split("=")[0] + ",Value=" + split("=")[1] ] | join(" ")' <<<"$WORKLOAD_RESOURCE_TAGS")
if [ "$provision_process_type" = "web" ]; then
if [ ! -z "$ALB_NAME_SLUG" ]
if [ ! -z "$ALB_NAME_SLUG" ]; then
provision_alb_name=$ALB_NAME_SLUG
else
provision_alb_name=$provision_repository_slug-$provision_branch_name
Expand Down

0 comments on commit efaa75b

Please sign in to comment.