1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

Rename to process isolation

This commit is contained in:
Bernd Schoolmann
2025-08-24 16:03:37 +02:00
parent 44d6062f84
commit d434fd9b5d
9 changed files with 14 additions and 14 deletions

View File

@@ -31,14 +31,14 @@ async function run(context) {
fse.chmodSync(wrapperBin, "755");
console.log("Copied memory-protection wrapper script");
const memorySecurityPath = path.join(__dirname, "../memory_security/");
const memorySecurityPath = path.join(__dirname, "../process_isolation/");
const memorySecurityLibPath = path.join(
memorySecurityPath,
"target",
"release",
"libmemory_security.so",
"libprocess_isolation.so",
);
const memorySecurityLibOutPath = path.join(appOutDir, "libmemory_security.so");
const memorySecurityLibOutPath = path.join(appOutDir, "libprocess_isolation.so");
child_process.execSync(`cargo build --release`, { cwd: memorySecurityPath });
fse.copyFileSync(memorySecurityLibPath, memorySecurityLibOutPath);
}