fix(js): update Electron build configuration and dependencies (#411)

This commit is contained in:
Haze
2026-03-11 15:40:08 +08:00
committed by GitHub
Unverified
parent a575977e3c
commit 4c786915c8
8 changed files with 20 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ if (!fs.existsSync(openclawLink)) {
process.exit(1);
}
const openclawReal = fs.realpathSync(normWin(openclawLink));
const openclawReal = fs.realpathSync(openclawLink);
echo` openclaw resolved: ${openclawReal}`;
// 2. Clean and create output directory
@@ -152,7 +152,7 @@ while (queue.length > 0) {
let realPath;
try {
realPath = fs.realpathSync(normWin(fullPath));
realPath = fs.realpathSync(fullPath);
} catch {
continue; // broken symlink, skip
}