fix: pass --non-interactive to nested doctor in update-runner#753
Closed
andranik-sahakyan wants to merge 1 commit intoopenclaw:mainfrom
Closed
fix: pass --non-interactive to nested doctor in update-runner#753andranik-sahakyan wants to merge 1 commit intoopenclaw:mainfrom
andranik-sahakyan wants to merge 1 commit intoopenclaw:mainfrom
Conversation
The nested doctor call during 'clawdbot update' was hanging because it inherited TTY stdin but wasn't passed --non-interactive. This caused doctor prompts (migrate config, restart gateway, etc.) to wait for input. CLAWDBOT_UPDATE_IN_PROGRESS only skips the 'Update from git?' prompt, not the other interactive prompts in doctor.
heatherstew44-maker
pushed a commit
to heatherstew44-maker/openclaw
that referenced
this pull request
Mar 8, 2026
* feat: add portable ZIP archives for Windows releases Add portable (no-install) ZIP builds for Windows x64 and ARM64. After the existing Tauri build step, a new step packages Handy.exe and its resources/ directory into a zip archive that users can extract and run directly without an installer. The portable ZIPs are uploaded to GitHub Releases alongside the existing NSIS/MSI installers, and included in CI artifact uploads. Closes openclaw#153 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: use -not instead of ! for PowerShell compatibility Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
heatherstew44-maker
pushed a commit
to heatherstew44-maker/openclaw
that referenced
this pull request
Mar 8, 2026
…w#753)" (openclaw#788) This reverts commit 6f3fd9b.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The nested doctor call during
clawdbot updatehangs on TTY because it prompts for:CLAWDBOT_UPDATE_IN_PROGRESS=1only skips the 'Update from git?' prompt, not these other prompts.Fix: Add
--non-interactiveflag to the nested doctor call.Tested: Ran
clawdbot doctor→ Yes to update → completes without hanging.