From 42ed31b127189321f0187f1a5f9deebdd806951a Mon Sep 17 00:00:00 2001 From: AlexSSD7 Date: Fri, 1 Sep 2023 15:25:35 +0100 Subject: [PATCH] Set macOS default backend to AFP --- cmd/run.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/run.go b/cmd/run.go index 844462b..915ecbd 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -128,6 +128,8 @@ func init() { switch runtime.GOOS { case "windows": defaultShareType = "smb" + case "darwin": + defaultShareType = "afp" default: defaultShareType = "ftp" }