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

推荐订阅源

Jina AI
Jina AI
S
SegmentFault 最新的问题
D
DataBreaches.Net
H
Help Net Security
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
罗磊的独立博客
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Vercel News
Vercel News
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)

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(update): roll back failed git updates · openclaw/open...
vincentkoc · 2026-05-23 · via Recent Commits to openclaw:main

@@ -161,7 +161,7 @@ export type UpdateInstallSurface =

161161162162

function mapManagerResolutionFailure(

163163

reason: UpdatePackageManagerFailureReason,

164-

): UpdateRunResult["reason"] {

164+

): NonNullable<UpdateRunResult["reason"]> {

165165

return reason;

166166

}

167167

@@ -766,7 +766,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

766766

const beforeVersion = await readPackageVersion(gitRoot);

767767

const channel: UpdateChannel = opts.channel ?? "dev";

768768

const devTargetRef = channel === "dev" ? normalizeDevTargetRef(opts.devTargetRef) : null;

769-

const branch = channel === "dev" ? await readBranchName(runCommand, gitRoot, timeoutMs) : null;

769+

const branch = await readBranchName(runCommand, gitRoot, timeoutMs);

770770

const needsCheckoutMain = channel === "dev" && !devTargetRef && branch !== DEV_BRANCH;

771771

gitTotalSteps = channel === "dev" ? (needsCheckoutMain ? 11 : 10) : 9;

772772

const buildGitErrorResult = (reason: string): UpdateRunResult => ({

@@ -786,6 +786,60 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

786786

}

787787

return null;

788788

};

789+

const appendRecoveryStep = async (name: string, argv: string[]) => {

790+

const started = Date.now();

791+

const result = await runCommand(argv, { cwd: gitRoot, timeoutMs });

792+

const recoveryStep: UpdateStepResult = {

793+

name,

794+

command: argv.join(" "),

795+

cwd: gitRoot,

796+

durationMs: Date.now() - started,

797+

exitCode: result.code,

798+

stdoutTail: trimLogTail(result.stdout, MAX_LOG_CHARS),

799+

stderrTail: trimLogTail(result.stderr, MAX_LOG_CHARS),

800+

};

801+

steps.push(recoveryStep);

802+

return recoveryStep.exitCode === 0;

803+

};

804+

const rollbackGitCheckout = async () => {

805+

if (!beforeSha) {

806+

return;

807+

}

808+

await appendRecoveryStep("git rollback clean", ["git", "-C", gitRoot, "reset", "--hard"]);

809+

if (branch && branch !== "HEAD") {

810+

const checkedOutBranch = await appendRecoveryStep("git rollback checkout", [

811+

"git",

812+

"-C",

813+

gitRoot,

814+

"checkout",

815+

"--force",

816+

branch,

817+

]);

818+

if (checkedOutBranch) {

819+

await appendRecoveryStep("git rollback reset", [

820+

"git",

821+

"-C",

822+

gitRoot,

823+

"reset",

824+

"--hard",

825+

beforeSha,

826+

]);

827+

}

828+

return;

829+

}

830+

await appendRecoveryStep("git rollback checkout", [

831+

"git",

832+

"-C",

833+

gitRoot,

834+

"checkout",

835+

"--detach",

836+

beforeSha,

837+

]);

838+

};

839+

const buildGitErrorResultWithRollback = async (reason: string): Promise<UpdateRunResult> => {

840+

await rollbackGitCheckout();

841+

return buildGitErrorResult(reason);

842+

};

789843790844

const statusCheck = await runStep(

791845

step(

@@ -1212,15 +1266,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

12121266

"require-preferred",

12131267

);

12141268

if (manager.kind === "missing-required") {

1215-

return {

1216-

status: "error",

1217-

mode: "git",

1218-

root: gitRoot,

1219-

reason: mapManagerResolutionFailure(manager.reason),

1220-

before: { sha: beforeSha, version: beforeVersion },

1221-

steps,

1222-

durationMs: Date.now() - startedAt,

1223-

};

1269+

return await buildGitErrorResultWithRollback(mapManagerResolutionFailure(manager.reason));

12241270

}

12251271

try {

12261272

const installEnv = resolveInstallEnv(manager.manager, manager.env);

@@ -1247,15 +1293,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

12471293

}

12481294

}

12491295

if (finalDepsStep.exitCode !== 0) {

1250-

return {

1251-

status: "error",

1252-

mode: "git",

1253-

root: gitRoot,

1254-

reason: "deps-install-failed",

1255-

before: { sha: beforeSha, version: beforeVersion },

1256-

steps,

1257-

durationMs: Date.now() - startedAt,

1258-

};

1296+

return await buildGitErrorResultWithRollback("deps-install-failed");

12591297

}

1260129812611299

const buildStep = await runStep(

@@ -1268,31 +1306,15 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

12681306

);

12691307

steps.push(buildStep);

12701308

if (buildStep.exitCode !== 0) {

1271-

return {

1272-

status: "error",

1273-

mode: "git",

1274-

root: gitRoot,

1275-

reason: "build-failed",

1276-

before: { sha: beforeSha, version: beforeVersion },

1277-

steps,

1278-

durationMs: Date.now() - startedAt,

1279-

};

1309+

return await buildGitErrorResultWithRollback("build-failed");

12801310

}

1281131112821312

const uiBuildStep = await runStep(

12831313

step("ui:build", managerScriptArgs(manager.manager, "ui:build"), gitRoot, manager.env),

12841314

);

12851315

steps.push(uiBuildStep);

12861316

if (uiBuildStep.exitCode !== 0) {

1287-

return {

1288-

status: "error",

1289-

mode: "git",

1290-

root: gitRoot,

1291-

reason: "ui-build-failed",

1292-

before: { sha: beforeSha, version: beforeVersion },

1293-

steps,

1294-

durationMs: Date.now() - startedAt,

1295-

};

1317+

return await buildGitErrorResultWithRollback("ui-build-failed");

12961318

}

1297131912981320

const doctorEntry = path.join(gitRoot, "openclaw.mjs");

@@ -1309,15 +1331,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

13091331

exitCode: 1,

13101332

stderrTail: `missing ${doctorEntry}`,

13111333

});

1312-

return {

1313-

status: "error",

1314-

mode: "git",

1315-

root: gitRoot,

1316-

reason: "doctor-entry-missing",

1317-

before: { sha: beforeSha, version: beforeVersion },

1318-

steps,

1319-

durationMs: Date.now() - startedAt,

1320-

};

1334+

return await buildGitErrorResultWithRollback("doctor-entry-missing");

13211335

}

1322133613231337

// Use --fix so that doctor auto-strips unknown config keys introduced by

@@ -1335,15 +1349,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

13351349

);

13361350

steps.push(doctorStep);

13371351

if (doctorStep.exitCode !== 0) {

1338-

return {

1339-

status: "error",

1340-

mode: "git",

1341-

root: gitRoot,

1342-

reason: "doctor-failed",

1343-

before: { sha: beforeSha, version: beforeVersion },

1344-

steps,

1345-

durationMs: Date.now() - startedAt,

1346-

};

1352+

return await buildGitErrorResultWithRollback("doctor-failed");

13471353

}

1348135413491355

const uiIndexHealth = await resolveControlUiDistIndexHealth({ root: gitRoot });

@@ -1367,15 +1373,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

13671373

steps.push(repairStep);

1368137413691375

if (repairResult.code !== 0) {

1370-

return {

1371-

status: "error",

1372-

mode: "git",

1373-

root: gitRoot,

1374-

reason: "ui-build-failed",

1375-

before: { sha: beforeSha, version: beforeVersion },

1376-

steps,

1377-

durationMs: Date.now() - startedAt,

1378-

};

1376+

return await buildGitErrorResultWithRollback("ui-build-failed");

13791377

}

1380137813811379

const repairedUiIndexHealth = await resolveControlUiDistIndexHealth({ root: gitRoot });

@@ -1390,15 +1388,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise<

13901388

exitCode: 1,

13911389

stderrTail: `missing ${uiIndexPath}`,

13921390

});

1393-

return {

1394-

status: "error",

1395-

mode: "git",

1396-

root: gitRoot,

1397-

reason: "ui-assets-missing",

1398-

before: { sha: beforeSha, version: beforeVersion },

1399-

steps,

1400-

durationMs: Date.now() - startedAt,

1401-

};

1391+

return await buildGitErrorResultWithRollback("ui-assets-missing");

14021392

}

14031393

}

14041394