From 4d7b6e14b8303587ef17d7c6571ef4fcf96539b7 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 29 Mar 2023 13:56:35 +0100 Subject: [PATCH] mount: clarify rclone mount error when installed via homebrew See: https://forum.rclone.org/t/suggestion-for-error-message/37145 --- cmd/cmount/mount_brew.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/cmount/mount_brew.go b/cmd/cmount/mount_brew.go index 964c0b234..7f368ccab 100644 --- a/cmd/cmount/mount_brew.go +++ b/cmd/cmount/mount_brew.go @@ -28,7 +28,7 @@ func init() { // returns an error, and an error channel for the serve process to // report an error when fusermount is called. func mount(_ *vfs.VFS, _ string, _ *mountlib.Options) (<-chan error, func() error, error) { - return nil, nil, errors.New("mount is not supported on MacOS when installed via Homebrew. " + - "Please install the binaries available at https://rclone." + - "org/downloads/ instead if you want to use the mount command") + return nil, nil, errors.New("rclone mount is not supported on MacOS when rclone is installed via Homebrew. " + + "Please install the rclone binaries available at https://rclone.org/downloads/ " + + "instead if you want to use the rclone mount command") }