diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index 73d38b2e1..a68563152 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -57,7 +57,10 @@ - [bootc image](experimental-bootc-image.md) - [fsck](experimental-fsck.md) -- [--progress-fd](experimental-progress-fd.md) + +# Progress monitoring + +- [--progress-fd](progress-fd.md) # More information diff --git a/docs/src/experimental-progress-fd.md b/docs/src/progress-fd.md similarity index 93% rename from docs/src/experimental-progress-fd.md rename to docs/src/progress-fd.md index 597b86a38..0f6f07bf8 100644 --- a/docs/src/experimental-progress-fd.md +++ b/docs/src/progress-fd.md @@ -1,8 +1,6 @@ # Interactive progress with `--progress-fd` -This is an experimental feature; tracking issue: - While the `bootc status` tooling allows a client to discover the state of the system, during interactive changes such as `bootc upgrade` or `bootc switch` it is possible to monitor the status of downloads diff --git a/lib/src/cli.rs b/lib/src/cli.rs index d815c537b..4e9188430 100644 --- a/lib/src/cli.rs +++ b/lib/src/cli.rs @@ -40,7 +40,7 @@ pub(crate) struct ProgressOptions { /// /// Interactive progress will be written to this file descriptor as "JSON lines" /// format, where each value is separated by a newline. - #[clap(long, hide = true)] + #[clap(long)] pub(crate) progress_fd: Option, }