From 49278d35b29456eac4bc7e9973e4cf01fcd34125 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Wed, 29 Oct 2025 17:25:46 +0200 Subject: [PATCH] fix typo in error message Signed-off-by: Stanislav Zhuk --- pkg/compose/build_bake.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/build_bake.go b/pkg/compose/build_bake.go index 8407b8a1797..c9aaca63ceb 100644 --- a/pkg/compose/build_bake.go +++ b/pkg/compose/build_bake.go @@ -300,7 +300,7 @@ func (s *composeService) doBuildBake(ctx context.Context, project *types.Project } var pathError *fs.PathError if errors.As(err, &pathError) { - return nil, fmt.Errorf("can't acces os.tempDir %s: %w", tmpdir, pathError.Err) + return nil, fmt.Errorf("can't access os.tempDir %s: %w", tmpdir, pathError.Err) } } }