From 4c1ad5a4afd0d4ef36fc09748c9638c43fba8998 Mon Sep 17 00:00:00 2001 From: Danny Browning Date: Tue, 27 Feb 2024 11:06:38 -0700 Subject: [PATCH] fix: try export all variables --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 29cabe2..95a066a 100644 --- a/Makefile +++ b/Makefile @@ -26,10 +26,12 @@ DID_PRIVATE_KEY ?= ${DID_PRIVATE_KEY} DATABASE_URL ?= ${DATABASE_URL} RUST_LOG ?= ${RUST_LOG} +.export-all-variables: + .PHONY: all all: build check-fmt check-clippy test -.PHONY: build +.PHONY: build export-all-variables build: # Build with default features $(CARGO) build --locked --release