local: make nounc advanced option except on windows

This commit is contained in:
albertony 2021-03-14 22:14:44 +01:00 committed by Nick Craig-Wood
parent 294f090361
commit aab076029f
1 changed files with 3 additions and 2 deletions

View File

@ -42,8 +42,9 @@ func init() {
NewFs: NewFs,
CommandHelp: commandHelp,
Options: []fs.Option{{
Name: "nounc",
Help: "Disable UNC (long path names) conversion on Windows",
Name: "nounc",
Help: "Disable UNC (long path names) conversion on Windows",
Advanced: runtime.GOOS != "windows",
Examples: []fs.OptionExample{{
Value: "true",
Help: "Disables long file names",