Skip to content

Commit

Permalink
Merge pull request #177 from cachix/pass-args-to-daemon
Browse files Browse the repository at this point in the history
Pass `cachixArgs` to the daemon
  • Loading branch information
domenkozar committed Apr 3, 2024
2 parents 205a065 + 587e94e commit 60ef706
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 60ef706

Please sign in to comment.