forked from TrueCloudLab/rclone
mount: clarify rclone mount error when installed via homebrew
See: https://forum.rclone.org/t/suggestion-for-error-message/37145
This commit is contained in:
parent
9ea7d143dd
commit
4d7b6e14b8
1 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ func init() {
|
||||||
// returns an error, and an error channel for the serve process to
|
// returns an error, and an error channel for the serve process to
|
||||||
// report an error when fusermount is called.
|
// report an error when fusermount is called.
|
||||||
func mount(_ *vfs.VFS, _ string, _ *mountlib.Options) (<-chan error, func() error, error) {
|
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. " +
|
return nil, nil, errors.New("rclone mount is not supported on MacOS when rclone is installed via Homebrew. " +
|
||||||
"Please install the binaries available at https://rclone." +
|
"Please install the rclone binaries available at https://rclone.org/downloads/ " +
|
||||||
"org/downloads/ instead if you want to use the mount command")
|
"instead if you want to use the rclone mount command")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue