Skip to content

Commit

Permalink
patch: fix typo in IPC server id
Browse files Browse the repository at this point in the history
  • Loading branch information
aethernet committed Jan 26, 2024
1 parent 3626ffc commit 5d43699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/gui/app/modules/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 5d43699

Please sign in to comment.