Skip to content

Commit b4eff31

Browse files
committed
fix(makefile): adding in retries on dev install
Signed-off-by: Cortland Goffena <30168413+cmgoffena13@users.noreply.github.com>
1 parent 0317c1b commit b4eff31

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ else
1414
endif
1515

1616
install-dev:
17-
$(PIP) install -e ".[dev,web,slack,dlt,lsp]" ./examples/custom_materializations
17+
@for i in 1 2 3; do \
18+
$(PIP) install -e ".[dev,web,slack,dlt,lsp]" ./examples/custom_materializations && exit 0; \
19+
echo "install-dev failed (attempt $$i/3), retrying..."; \
20+
sleep 5; \
21+
done; \
22+
exit 1
1823

1924
install-doc:
2025
$(PIP) install -r ./docs/requirements.txt

0 commit comments

Comments
 (0)