Skip to content

Commit c4ac852

Browse files
committed
debug: Show the composer command
1 parent 10a617c commit c4ac852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ FILTER := .
944944
MAX_RETRIES := 3
945945

946946
define run_composer_with_retry
947-
@for i in $$(seq 1 $(MAX_RETRIES)); do \
947+
for i in $$(seq 1 $(MAX_RETRIES)); do \
948948
echo "Attempting composer update (attempt $$i of $(MAX_RETRIES))..."; \
949949
$(COMPOSER) --working-dir=$1 update $2 && break || (echo "Retry $$i failed, waiting 5 seconds before next attempt..." && sleep 5); \
950950
done

0 commit comments

Comments
 (0)