1 Commits
Author SHA1 Message Date
RandyTheSilly 13ae080af2 Define socketPath for interactive clients 2025-05-12 21:57:37 -04:00
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
//go:build interactive
package daemon
var socketPath string // interactive clients are not expected to daemonize
@@ -1,4 +1,4 @@
//go:build android && termux
//go:build android && termux && !interactive
package daemon
@@ -1,4 +1,4 @@
//go:build !windows && !android && !termux
//go:build !windows && !android && !termux && !interactive
package daemon
@@ -1,4 +1,4 @@
//go:build windows
//go:build windows && !interactive
package daemon