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