Skip to content

Commit 05d7df7

Browse files
committed
feat: show download progress during Docker image pull
Display "Downloading Docker image... this may take several minutes" message during image pull to provide user feedback during the potentially long first-run download.
1 parent 2da6a1d commit 05d7df7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/macos/Sources/OpenClawLib/OpenClawLauncher.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -781,8 +781,8 @@ public class OpenClawLauncher: ObservableObject {
781781
}
782782

783783
private func ensureImage() async throws {
784-
addStep(.running, "Pulling latest image... this may take a moment")
785-
pullProgressText = nil
784+
addStep(.running, "Pulling latest image...")
785+
pullProgressText = "Downloading Docker image... this may take several minutes"
786786

787787
let pull = try await shell("docker", "pull", imageName)
788788
pullProgressText = nil

0 commit comments

Comments
 (0)