@kritchoff/agent-browser 0.9.15 → 0.9.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sdk.sh +2 -2
package/package.json
CHANGED
package/sdk.sh
CHANGED
|
@@ -62,10 +62,10 @@ pull_images_with_retry() {
|
|
|
62
62
|
local max_retries=5
|
|
63
63
|
local count=0
|
|
64
64
|
|
|
65
|
-
log_info "
|
|
65
|
+
log_info "Please wait while we get things ready..."
|
|
66
66
|
|
|
67
67
|
while [ $count -lt $max_retries ]; do
|
|
68
|
-
if docker compose -f "$COMPOSE_FILE" pull; then
|
|
68
|
+
if docker compose -f "$COMPOSE_FILE" pull --quiet; then
|
|
69
69
|
return 0
|
|
70
70
|
fi
|
|
71
71
|
|