mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-11-08 22:34:46 +08:00
fix GOOS
This commit is contained in:
@@ -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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user