mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix GOOS
This commit is contained in:
parent
05724a68d4
commit
ff666104c4
|
@ -1,5 +1,5 @@
|
|||
//go:build !linux
|
||||
// +build !linux
|
||||
//go:build !linux && !windows
|
||||
// +build !linux,!windows
|
||||
|
||||
package unmount
|
||||
|
||||
|
|
8
weed/mount/unmount/unmount_unsupported.go
Normal file
8
weed/mount/unmount/unmount_unsupported.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
//go:build windows
|
||||
// +build windows
|
||||
|
||||
package unmount
|
||||
|
||||
func unmount(dir string) error {
|
||||
return nil
|
||||
}
|
Loading…
Reference in a new issue