clonetool/device_other.go
2026-09-05 23:02:29 +02:00

10 lines
202 B
Go

//go:build !linux
package main
import "fmt"
func blockDeviceSize(path string) (int64, error) {
return 0, fmt.Errorf("block device size detection is only implemented on linux (got path %s)", path)
}