From 6021747e585785a32c8e2a22cd8b672d62ca4afb Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 2 Jan 2024 14:25:52 -0500 Subject: [PATCH] cli: Document that check doesn't fetch layers Closes: https://github.com/containers/bootc/discussions/245 Signed-off-by: Colin Walters --- lib/src/cli.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/src/cli.rs b/lib/src/cli.rs index 3b0e41023..dcf6140b4 100644 --- a/lib/src/cli.rs +++ b/lib/src/cli.rs @@ -32,6 +32,9 @@ pub(crate) struct UpgradeOpts { pub(crate) touch_if_changed: Option, /// Check if an update is available without applying it. + /// + /// This only downloads an updated manifest and image configuration (i.e. typically kilobyte-sized metadata) + /// as opposed to the image layers. #[clap(long, conflicts_with = "apply")] pub(crate) check: bool,