From 48bda787ab097e4e436efb0656f69836360fc881 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 14 Aug 2023 14:11:10 -0400 Subject: [PATCH] store: Tweak error message for non-ostree containers Since in theory we support non-bootable cases, and we actually have a distinct label for the bootable one. --- lib/src/container/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/container/store.rs b/lib/src/container/store.rs index 9515eb62..fb82b9a4 100644 --- a/lib/src/container/store.rs +++ b/lib/src/container/store.rs @@ -372,7 +372,7 @@ pub(crate) fn parse_manifest_layout<'a>( let (layout, target_diffid) = info.ok_or_else(|| { anyhow!( - "No {} label found, not an ostree-bootable container", + "No {} label found, not an ostree encapsulated container", ExportLayout::V1.label() ) })?;