📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-09-03 08:57:39 +00:00
parent 0b2b056032
commit 3294e63c9f
98 changed files with 3411 additions and 467 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env node
import { spawnSync } from 'node:child_process';
import { platform } from 'node:os';
const cmd = platform() === 'win32' ? 'python' : 'python3';
const args = process.argv.slice(2);
const result = spawnSync(cmd, args, {
stdio: 'inherit',
cwd: process.cwd()
});
if (result.error) {
console.error(`Failed to start ${cmd}: ${result.error.message}`);
process.exit(1);
}
process.exit(result.status ?? 0);