From 0d04e4acef7e4fd6c0c4f6eb5dd98dcb872220bf Mon Sep 17 00:00:00 2001 From: christophe-duc Date: Wed, 7 Jan 2026 14:24:07 -0400 Subject: [PATCH] fixing Linux build problems --- pkg/commands/runtime_libpod.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/commands/runtime_libpod.go b/pkg/commands/runtime_libpod.go index 0d34bc57..37dc2ead 100644 --- a/pkg/commands/runtime_libpod.go +++ b/pkg/commands/runtime_libpod.go @@ -541,10 +541,11 @@ func convertLibpodImageHistory(history []libimage.ImageHistory) []ImageHistoryEn func convertLibpodVolumeList(vols []*libpod.Volume) []VolumeSummary { result := make([]VolumeSummary, len(vols)) for i, vol := range vols { + mountpoint, _ := vol.MountPoint() result[i] = VolumeSummary{ Name: vol.Name(), Driver: vol.Driver(), - Mountpoint: vol.MountPoint(), + Mountpoint: mountpoint, CreatedAt: vol.CreatedTime(), Labels: vol.Labels(), Scope: vol.Scope(),