Skip to content

cli: graduate progress-fd out of experimental #1423

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

# Interactive progress with `--progress-fd`

This is an experimental feature; tracking issue: <https://github.com/bootc-dev/bootc/issues/1016>

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
Expand Down
2 changes: 1 addition & 1 deletion lib/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<RawProgressFd>,
}

Expand Down