fix typo in error message

Signed-off-by: Stanislav Zhuk <stasadev@gmail.com>
This commit is contained in:
Stanislav Zhuk
2025-10-29 17:25:46 +02:00
committed by Nicolas De loof
parent 3658a063bb
commit 10f15cacdd

View File

@@ -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)
}
}
}