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

Only build desktop_proxy

This commit is contained in:
Daniel García
2024-07-08 15:26:47 +02:00
parent 0a83b8ddaf
commit 004188fe60

View File

@@ -13,7 +13,7 @@ function buildNapiModule(target) {
function buildProxyBin(target) {
const targetArg = target ? `--target ${target}` : "";
return child_process.execSync(`cargo build --release ${targetArg}`, {stdio: 'inherit', cwd: path.join(__dirname, "proxy")});
return child_process.execSync(`cargo build --bin desktop_proxy --release ${targetArg}`, {stdio: 'inherit', cwd: path.join(__dirname, "proxy")});
}
if (!crossPlatform) {