File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 99use std:: fmt:: Write as _;
1010use std:: future:: Future ;
1111use std:: pin:: Pin ;
12- use std:: process:: Command ;
1312
1413use bootc_utils:: iterator_split_nonempty_rest_count;
1514use camino:: Utf8PathBuf ;
@@ -299,13 +298,15 @@ pub(crate) async fn fsck(storage: &Storage, mut output: impl std::io::Write) ->
299298
300299 // Run an `ostree fsck` (yes, ostree exposes enough APIs
301300 // that we could reimplement this in Rust, but eh)
302- let st = Command :: new ( "ostree" )
303- . arg ( "fsck" )
304- . stdin ( std:: process:: Stdio :: inherit ( ) )
305- . status ( ) ?;
306- if !st. success ( ) {
307- anyhow:: bail!( "ostree fsck failed" ) ;
308- }
301+ // TODO: Fix https://github.com/bootc-dev/bootc/issues/1216 so we can
302+ // do this.
303+ // let st = Command::new("ostree")
304+ // .arg("fsck")
305+ // .stdin(std::process::Stdio::inherit())
306+ // .status()?;
307+ // if !st.success() {
308+ // anyhow::bail!("ostree fsck failed");
309+ // }
309310
310311 Ok ( ( ) )
311312}
You can’t perform that action at this time.
0 commit comments