Skip to content

Commit 607f772

Browse files
authored
Merge pull request #19 from mame/pass-pipename-to-daemon
Pass pipename to the background daemon process
2 parents 3768ffe + a8fcd07 commit 607f772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func (c *config) start() context.Context {
148148
log.Printf("daemonize: start")
149149
args := []string{"-socket", c.socketPath}
150150
if c.logFile != "" {
151-
args = append(args, "-log", c.logFile)
151+
args = append(args, "-pipename", c.pipeName, "-log", c.logFile)
152152
}
153153
startDaemonizing(args...)
154154
} else {

0 commit comments

Comments
 (0)