We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a617c commit c4ac852Copy full SHA for c4ac852
Makefile
@@ -944,7 +944,7 @@ FILTER := .
944
MAX_RETRIES := 3
945
946
define run_composer_with_retry
947
- @for i in $$(seq 1 $(MAX_RETRIES)); do \
+ for i in $$(seq 1 $(MAX_RETRIES)); do \
948
echo "Attempting composer update (attempt $$i of $(MAX_RETRIES))..."; \
949
$(COMPOSER) --working-dir=$1 update $2 && break || (echo "Retry $$i failed, waiting 5 seconds before next attempt..." && sleep 5); \
950
done
0 commit comments