1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-16 00:04:40 +00:00

gendocs: ignore missing rclone_mount.md, rclone_nfsmount.md, rclone_serve_nfs.md on windows

This commit is contained in:
albertony
2025-09-02 10:00:20 +02:00
parent fee4716343
commit 813708c24d

View File

@@ -170,8 +170,18 @@ rclone.org website.`,
name := filepath.Base(path)
cmd, ok := commands[name]
if !ok {
if name == "rclone_mount.md" && runtime.GOOS == "darwin" {
return nil // won't exist without -tags cmount
switch runtime.GOOS {
case "darwin":
if name == "rclone_mount.md" {
return nil // won't exist without -tags cmount
}
case "windows":
switch name {
case "rclone_mount.md":
return nil // won't exist without -tags cmount
case "rclone_nfsmount.md", "rclone_serve_nfs.md":
return nil // not supported
}
}
return fmt.Errorf("didn't find command for %q", name)
}