mirror of
https://github.com/rclone/rclone.git
synced 2025-07-11 14:30:44 +02:00
mount: run rclone mount in the background - fixes #723
This commit is contained in:
15
cmd/mountlib/daemon.go
Normal file
15
cmd/mountlib/daemon.go
Normal file
@ -0,0 +1,15 @@
|
||||
// Daemonization interface for non-Unix variants only
|
||||
|
||||
// +build windows darwin,!cgo
|
||||
|
||||
package mountlib
|
||||
|
||||
import (
|
||||
"log"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func startBackgroundMode() bool {
|
||||
log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
|
||||
return false
|
||||
}
|
Reference in New Issue
Block a user