From 9f83e3d1a63e46ab8d5bfa812256e815c6cc17f1 Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Tue, 29 Nov 2022 16:25:49 -0500 Subject: [PATCH] Fixing env var usage in makfile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85c653cce..e1f267425 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,7 @@ test-unit: ## Run unit tests test-integration: $(GO_BIN)/commander ## Run integration tests. To run a specific test pass the FILTER var. Usage: `make test-integration FILTER="attack protection"` ${call print, "Running integration tests"} @$(MAKE) install # ensure fresh install prior to running test - auth0 tenants add $\AUTH0_CLI_CLIENT_DOMAIN --client-id $\AUTH0_CLI_CLIENT_ID --client-secret $\AUTH0_CLI_CLIENT_SECRET && commander test ./test/integration/test-cases.yaml --filter "$(FILTER)"; \ + auth0 tenants add ${AUTH0_CLI_CLIENT_DOMAIN} --client-id ${AUTH0_CLI_CLIENT_ID} --client-secret ${AUTH0_CLI_CLIENT_SECRET} && commander test ./test/integration/test-cases.yaml --filter "$(FILTER)"; \ exit_code=$$?; \ bash ./test/integration/scripts/test-cleanup.sh; \ exit $$exit_code