patch: fix typo in IPC server id

This commit is contained in:
Edwin Joassart 2024-01-26 16:22:35 +01:00
parent 3626ffc7ef
commit 5d43699242

View File

@ -112,10 +112,10 @@ function startApiAndSpawnChild({
// server/client has a different name.
const IPC_SERVER_ID = `etcher-server-${process.pid}-${Date.now()}-${
withPrivileges ? 'privileged' : 'unprivileged'
}}}`;
}`;
const IPC_CLIENT_ID = `etcher-client-${process.pid}-${Date.now()}-${
withPrivileges ? 'privileged' : 'unprivileged'
}}`;
}`;
const IPC_SOCKET_ROOT = path.join(
process.env.XDG_RUNTIME_DIR || os.tmpdir(),