mirror of
https://github.com/rwinkhart/rcw.git
synced 2026-08-28 04:46:42 -04:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4bcff52758 | ||
|
|
4ddd3cf32c |
@@ -0,0 +1,7 @@
|
||||
//go:build android && termux
|
||||
|
||||
package daemon
|
||||
|
||||
import "path/filepath"
|
||||
|
||||
var socketPath = "/data/data/com.termux/files/usr/tmp/" + filepath.Base(binPath) + "-rcwd.sock" // store UNIX socket path
|
||||
@@ -1,9 +1,7 @@
|
||||
//go:build !windows
|
||||
//go:build !windows && !android && !termux
|
||||
|
||||
package daemon
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
)
|
||||
import "path/filepath"
|
||||
|
||||
var socketPath = "/tmp/" + filepath.Base(binPath) + "-rcwd.sock" // store UNIX socket path
|
||||
|
||||
Reference in New Issue
Block a user