mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-24 02:59:13 +08:00
fix GOOS
This commit is contained in:
parent
05724a68d4
commit
ff666104c4
@ -1,5 +1,5 @@
|
|||||||
//go:build !linux
|
//go:build !linux && !windows
|
||||||
// +build !linux
|
// +build !linux,!windows
|
||||||
|
|
||||||
package unmount
|
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 New Issue
Block a user