From e271eaa5848369c919d7944150ce21def476e74c Mon Sep 17 00:00:00 2001 From: Shouichi Kamiya Date: Wed, 21 Jun 2023 03:53:55 +0900 Subject: [PATCH] fix(build): use the correct env var to mount pwd (#3491) Co-authored-by: Dylan Page --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb704a87a1..518107592e 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ test-all: ## Run tests including integration .PHONY: docker/test-all docker/test-all: ## Run all tests in docker - docker run -it -v $(pwd):/atlantis ghcr.io/runatlantis/testing-env:latest sh -c "cd /atlantis && make test-all" + docker run -it -v $(PWD):/atlantis ghcr.io/runatlantis/testing-env:latest sh -c "cd /atlantis && make test-all" .PHONY: test-coverage test-coverage: ## Show test coverage