Skip to content

Commit e3568e0

Browse files
committed
cli: graduate progress-fd out of experimental
Signed-off-by: Joseph Marrero Corchado <[email protected]>
1 parent 3a0c6ab commit e3568e0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docs/src/SUMMARY.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@
5757

5858
- [bootc image](experimental-bootc-image.md)
5959
- [fsck](experimental-fsck.md)
60-
- [--progress-fd](experimental-progress-fd.md)
60+
61+
# Progress monitoring
62+
63+
- [--progress-fd](progress-fd.md)
6164

6265
# More information
6366

docs/src/experimental-progress-fd.md renamed to docs/src/progress-fd.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11

22
# Interactive progress with `--progress-fd`
33

4-
This is an experimental feature; tracking issue: <https://github.com/bootc-dev/bootc/issues/1016>
5-
64
While the `bootc status` tooling allows a client to discover the state
75
of the system, during interactive changes such as `bootc upgrade`
86
or `bootc switch` it is possible to monitor the status of downloads

lib/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub(crate) struct ProgressOptions {
4040
///
4141
/// Interactive progress will be written to this file descriptor as "JSON lines"
4242
/// format, where each value is separated by a newline.
43-
#[clap(long, hide = true)]
43+
#[clap(long)]
4444
pub(crate) progress_fd: Option<RawProgressFd>,
4545
}
4646

0 commit comments

Comments
 (0)