feat: remove check version update feature

This commit is contained in:
2026-07-13 16:32:20 +07:00
parent 275f20e2b8
commit b4ffea7deb
19 changed files with 26 additions and 995 deletions
-11
View File
@@ -248,17 +248,6 @@ if (fs.existsSync(mitmSrc)) {
console.log("⏭️ No MITM files found\n");
}
// Step 7b: Copy standalone updater (headless Node process for install progress)
console.log("7️⃣ b Copying updater files...");
const updaterSrc = path.join(appDir, "src", "lib", "updater");
const updaterDest = path.join(cliAppDir, "src", "lib", "updater");
if (fs.existsSync(updaterSrc)) {
copyRecursive(updaterSrc, updaterDest);
console.log("✅ Copied updater files\n");
} else {
console.log("⏭️ No updater files found\n");
}
// Step 8: Build MITM server (config driven - see app/cli/scripts/buildMitm.js)
console.log("8️⃣ Building MITM server...");
try {