local: make nounc advanced option except on windows
This commit is contained in:
parent
294f090361
commit
aab076029f
1 changed files with 3 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue