From 12039a0e63377e86fa1b5adc3d327d6e07f23a32 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 26 Sep 2025 15:24:20 +0200 Subject: pkg/osutil: make VerboseError nest other errors After this change it fits more naturally into the Go's error functionality. --- pkg/build/freebsd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/build') diff --git a/pkg/build/freebsd.go b/pkg/build/freebsd.go index 5de09738a..4b403d587 100644 --- a/pkg/build/freebsd.go +++ b/pkg/build/freebsd.go @@ -54,7 +54,7 @@ options DIAGNOSTIC // because FreeBSD's build doesn't correctly order the two // targets. Its output is useful for debugging though, so // include it here. - return ImageDetails{}, osutil.PrependContext(string(output), err) + return ImageDetails{}, fmt.Errorf("%s: %w", string(output), err) } kernelObjDir := filepath.Join(objPrefix, params.KernelDir, -- cgit mrf-deployment