Skip to content

Commit

Permalink
Pass cachixArgs to the daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Apr 2, 2024
1 parent 205a065 commit 587e94e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7824,6 +7824,7 @@ async function setup() {
'daemon', 'run',
'--socket', `${daemonDir}/daemon.sock`,
name,
...cachixArgs.split(' ').filter((arg) => arg !== ''),
], {
stdio: ['ignore', daemonLog, daemonLog],
detached: true,
Expand Down
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ async function setup() {
'daemon', 'run',
'--socket', `${daemonDir}/daemon.sock`,
name,
...cachixArgs.split(' ').filter((arg) => arg !== ''),
],
{
stdio: ['ignore', daemonLog, daemonLog],
Expand Down

0 comments on commit 587e94e

Please sign in to comment.