From b4eff31d6cbb93bfe0461992a398c095e549351f Mon Sep 17 00:00:00 2001 From: Cortland Goffena <30168413+cmgoffena13@users.noreply.github.com> Date: Sat, 29 Aug 2026 15:18:59 -0600 Subject: [PATCH] fix(makefile): adding in retries on dev install Signed-off-by: Cortland Goffena <30168413+cmgoffena13@users.noreply.github.com> --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3edd6066ef..4566021e47 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,12 @@ else endif install-dev: - $(PIP) install -e ".[dev,web,slack,dlt,lsp]" ./examples/custom_materializations + @for i in 1 2 3; do \ + $(PIP) install -e ".[dev,web,slack,dlt,lsp]" ./examples/custom_materializations && exit 0; \ + echo "install-dev failed (attempt $$i/3), retrying..."; \ + sleep 5; \ + done; \ + exit 1 install-doc: $(PIP) install -r ./docs/requirements.txt