Skip to content

Commit

Permalink
Merge pull request #973 from Azure/fix-setup-env-mk
Browse files Browse the repository at this point in the history
fix setupenv.mk cache invalidation
  • Loading branch information
janboll authored Dec 12, 2024
2 parents 932a2c2 + 8de5dd4 commit 34f8972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup-env.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PROJECT_ROOT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
DEPLOY_ENV ?= personal-dev
PIPELINE ?= pipeline.yaml
PIPELINE_STEP ?= deploy
HASH = $(shell echo -n "$(DEPLOY_ENV)$(PIPELINE)$(PIPELINE_STEP)" | sha256sum | cut -d " " -f 1)
HASH = $(shell echo -n "$(DEPLOY_ENV)$(PIPELINE)$(PIPELINE_STEP)$(PWD)" | sha256sum | cut -d " " -f 1)
ENV_VARS_FILE ?= /tmp/deploy.${HASH}.cfg

# Target to generate the environment variables file
Expand Down

0 comments on commit 34f8972

Please sign in to comment.