open-vault/vault/diagnose/os_openbsd_arm.go
Scott Miller b795643146
Third time trying to get the os_openbsd_arm.go right. (#11786)
* Fix the third dumb thing in this file

* ...
2021-06-07 17:19:47 -05:00

11 lines
181 B
Go

// +build openbsd,arm
package diagnose
import "context"
func diskUsage(ctx context.Context) error {
SpotSkipped(ctx, "disk usage", "unsupported on this platform")
return nil
}