Skip to content

Commit

Permalink
chore: Fix Makefile vars assignment in website/fe/Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tsertkov committed May 27, 2024
1 parent eaba5d3 commit dca70a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/fe/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ REGION := $(call read_config_var,2)
REG_NAME = $(call aws_region_to_short_name,$(REGION))
WEBSITE_STACK = $(PROJECT_NAME)-$(ENV)-$(REG_NAME)

deploy: S3_BUCKET := $(call aws_cf_output,$(WEBSITE_STACK),$(REGION),WebBucket)
deploy: CLOUDFRONT_ID := $(call aws_cf_output,$(WEBSITE_STACK),$(REGION),Distribution)
deploy: S3_BUCKET ?= $(call aws_cf_output,$(WEBSITE_STACK),$(REGION),WebBucket)
deploy: CLOUDFRONT_ID ?= $(call aws_cf_output,$(WEBSITE_STACK),$(REGION),Distribution)
deploy: \
assert-ENV \
assert-S3_BUCKET \
Expand Down

0 comments on commit dca70a3

Please sign in to comment.