1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

remove comment related to sandbox flag (outdated)

This commit is contained in:
John Harrington
2025-12-08 15:10:22 -07:00
parent 3f4f33b899
commit 7d496df81f

View File

@@ -30,8 +30,7 @@ function buildNapiModule(target, release = true) {
const releaseArg = release ? "--release" : "";
child_process.execSync(`npm run build -- ${releaseArg} ${targetArg}`, {
stdio: 'inherit',
cwd: path.join(__dirname, "napi"),
env: process.env // Pass environment variables including SANDBOX_BUILD
cwd: path.join(__dirname, "napi")
});
}