惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
小众软件
小众软件
量子位
月光博客
月光博客
P
Proofpoint News Feed
IT之家
IT之家
腾讯CDC
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(installer): persist portable Git on Windows · opencla...
vincentkoc · 2026-05-23 · via Recent Commits to openclaw:main

@@ -389,8 +389,7 @@ function Add-ToUserPath {

389389

}

390390391391

function Get-PortableGitRoot {

392-

$base = Join-Path $env:LOCALAPPDATA "OpenClaw\deps"

393-

return (Join-Path $base "portable-git")

392+

return (Join-Path (Get-OpenClawDepsRoot) "portable-git")

394393

}

395394396395

function Get-PortableGitCommandPath {

@@ -414,20 +413,41 @@ function Use-PortableGitIfPresent {

414413

return $false

415414

}

416415416+

foreach ($pathEntry in (Get-PortableGitPathEntries)) {

417+

Add-ToProcessPath $pathEntry

418+

}

419+

if (Check-Git) {

420+

return $true

421+

}

422+

return $false

423+

}

424+425+

function Get-PortableGitPathEntries {

426+

$gitExe = Get-PortableGitCommandPath

427+

if (-not $gitExe) {

428+

return @()

429+

}

430+417431

$portableRoot = Get-PortableGitRoot

418-

foreach ($pathEntry in @(

432+

$pathEntries = @(

419433

(Join-Path $portableRoot "mingw64\bin"),

420434

(Join-Path $portableRoot "usr\bin"),

421435

(Split-Path -Parent $gitExe)

422-

)) {

423-

if (Test-Path $pathEntry) {

424-

Add-ToProcessPath $pathEntry

436+

)

437+

return ($pathEntries | Where-Object { Test-Path $_ } | Select-Object -Unique)

438+

}

439+440+

function Ensure-PortableGitOnUserPath {

441+

$added = @()

442+

foreach ($pathEntry in (Get-PortableGitPathEntries)) {

443+

if (Add-ToUserPath $pathEntry) {

444+

$added += $pathEntry

425445

}

426446

}

427-

if (Check-Git) {

428-

return $true

447+448+

if ($added.Count -gt 0) {

449+

Write-Host "[!] Added user-local Git to user PATH (restart terminal if git or git-backed updates are not found)" -ForegroundColor Yellow

429450

}

430-

return $false

431451

}

432452433453

function Resolve-PortableGitDownload {

@@ -458,6 +478,7 @@ function Resolve-PortableGitDownload {

458478459479

function Install-PortableGit {

460480

if (Use-PortableGitIfPresent) {

481+

Ensure-PortableGitOnUserPath

461482

$portableVersion = (& git --version 2>$null)

462483

if ($portableVersion) {

463484

Write-Host "[OK] User-local Git already available: $portableVersion" -ForegroundColor Green

@@ -499,14 +520,18 @@ function Install-PortableGit {

499520

if (-not (Use-PortableGitIfPresent)) {

500521

throw "Portable Git bootstrap completed, but git is still unavailable."

501522

}

523+

Ensure-PortableGitOnUserPath

502524503525

$portableVersion = (& git --version 2>$null)

504526

Write-Host "[OK] User-local Git ready: $portableVersion" -ForegroundColor Green

505527

}

506528507529

function Ensure-Git {

508530

if (Check-Git) { return $true }

509-

if (Use-PortableGitIfPresent) { return $true }

531+

if (Use-PortableGitIfPresent) {

532+

Ensure-PortableGitOnUserPath

533+

return $true

534+

}

510535

try {

511536

Install-PortableGit

512537

if (Check-Git) {

@@ -655,17 +680,81 @@ function Ensure-OpenClawOnPath {

655680

return $false

656681

}

657682683+

function Get-RepoPnpmVersion {

684+

param([string]$RepoDir)

685+686+

if ([string]::IsNullOrWhiteSpace($RepoDir)) {

687+

return $null

688+

}

689+690+

$packageJsonPath = Join-Path $RepoDir "package.json"

691+

if (-not (Test-Path $packageJsonPath)) {

692+

return $null

693+

}

694+695+

try {

696+

$packageJson = Get-Content -LiteralPath $packageJsonPath -Raw | ConvertFrom-Json

697+

if ($packageJson.packageManager -match '^pnpm@(?<version>[^+]+)') {

698+

return $Matches["version"]

699+

}

700+

if ($packageJson.devEngines -and $packageJson.devEngines.packageManager) {

701+

$packageManager = $packageJson.devEngines.packageManager

702+

if ($packageManager.name -eq "pnpm" -and -not [string]::IsNullOrWhiteSpace($packageManager.version)) {

703+

return $packageManager.version

704+

}

705+

}

706+

} catch {

707+

return $null

708+

}

709+710+

return $null

711+

}

712+713+

function Test-PnpmCommandMatchesVersion {

714+

param(

715+

[string]$PnpmVersion,

716+

[string]$RepoDir

717+

)

718+719+

$pnpmCommand = Get-PnpmCommandPath

720+

if (-not $pnpmCommand) {

721+

return $false

722+

}

723+

if ([string]::IsNullOrWhiteSpace($PnpmVersion)) {

724+

return $true

725+

}

726+727+

$pushedLocation = $false

728+

try {

729+

if (-not [string]::IsNullOrWhiteSpace($RepoDir) -and (Test-Path $RepoDir)) {

730+

Push-Location -LiteralPath $RepoDir

731+

$pushedLocation = $true

732+

}

733+

$currentVersion = (& $pnpmCommand --version 2>$null)

734+

return ($LASTEXITCODE -eq 0 -and $currentVersion -and $currentVersion.Trim() -eq $PnpmVersion)

735+

} finally {

736+

if ($pushedLocation) {

737+

Pop-Location

738+

}

739+

}

740+

}

741+658742

function Ensure-Pnpm {

659-

if (Get-PnpmCommandPath) {

743+

param([string]$RepoDir)

744+745+

$pnpmVersion = Get-RepoPnpmVersion -RepoDir $RepoDir

746+

$pnpmSpec = if ([string]::IsNullOrWhiteSpace($pnpmVersion)) { "pnpm@latest" } else { "pnpm@$pnpmVersion" }

747+748+

if (Test-PnpmCommandMatchesVersion -PnpmVersion $pnpmVersion -RepoDir $RepoDir) {

660749

return

661750

}

662751

$corepackCommand = Get-CorepackCommandPath

663752

if ($corepackCommand) {

664753

try {

665754

& $corepackCommand enable | Out-Null

666-

& $corepackCommand prepare pnpm@latest --activate | Out-Null

667-

if (Get-PnpmCommandPath) {

668-

Write-Host "[OK] pnpm installed via corepack" -ForegroundColor Green

755+

& $corepackCommand prepare $pnpmSpec --activate | Out-Null

756+

if (Test-PnpmCommandMatchesVersion -PnpmVersion $pnpmVersion -RepoDir $RepoDir) {

757+

Write-Host "[OK] pnpm installed via corepack ($pnpmSpec)" -ForegroundColor Green

669758

return

670759

}

671760

} catch {

@@ -676,10 +765,13 @@ function Ensure-Pnpm {

676765

$prevScriptShell = $env:NPM_CONFIG_SCRIPT_SHELL

677766

$env:NPM_CONFIG_SCRIPT_SHELL = "cmd.exe"

678767

try {

679-

& (Get-NpmCommandPath) install -g pnpm

768+

& (Get-NpmCommandPath) install -g $pnpmSpec

680769

} finally {

681770

$env:NPM_CONFIG_SCRIPT_SHELL = $prevScriptShell

682771

}

772+

if (-not (Test-PnpmCommandMatchesVersion -PnpmVersion $pnpmVersion -RepoDir $RepoDir)) {

773+

throw "pnpm install completed, but $pnpmSpec is not first on PATH."

774+

}

683775

Write-Host "[OK] pnpm installed" -ForegroundColor Green

684776

}

685777

@@ -821,7 +913,6 @@ function Install-OpenClawFromGit {

821913

if (-not (Ensure-Git)) {

822914

return $false

823915

}

824-

Ensure-Pnpm

825916826917

$repoUrl = "https://github.com/openclaw/openclaw.git"

827918

Write-Host "[*] Installing OpenClaw from GitHub ($repoUrl)..." -ForegroundColor Yellow

@@ -844,6 +935,7 @@ function Install-OpenClawFromGit {

844935

} else {

845936

Write-Host "[!] Git update disabled; skipping git pull" -ForegroundColor Yellow

846937

}

938+

Ensure-Pnpm -RepoDir $RepoDir

847939848940

Remove-LegacySubmodule -RepoDir $RepoDir

849941

@@ -853,13 +945,19 @@ function Install-OpenClawFromGit {

853945

throw "pnpm not found after installation."

854946

}

855947

$env:NPM_CONFIG_SCRIPT_SHELL = "cmd.exe"

948+

$pushedRepoLocation = $false

856949

try {

857-

& $pnpmCommand -C $RepoDir install

858-

if (-not (& $pnpmCommand -C $RepoDir ui:build)) {

950+

Push-Location -LiteralPath $RepoDir

951+

$pushedRepoLocation = $true

952+

& $pnpmCommand install

953+

if (-not (& $pnpmCommand ui:build)) {

859954

Write-Host "[!] UI build failed; continuing (CLI may still work)" -ForegroundColor Yellow

860955

}

861-

& $pnpmCommand -C $RepoDir build

956+

& $pnpmCommand build

862957

} finally {

958+

if ($pushedRepoLocation) {

959+

Pop-Location

960+

}

863961

$env:NPM_CONFIG_SCRIPT_SHELL = $prevPnpmScriptShell

864962

}

865963