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 9
9
use std:: fmt:: Write as _;
10
10
use std:: future:: Future ;
11
11
use std:: pin:: Pin ;
12
- use std:: process:: Command ;
13
12
14
13
use bootc_utils:: iterator_split_nonempty_rest_count;
15
14
use camino:: Utf8PathBuf ;
@@ -299,13 +298,15 @@ pub(crate) async fn fsck(storage: &Storage, mut output: impl std::io::Write) ->
299
298
300
299
// Run an `ostree fsck` (yes, ostree exposes enough APIs
301
300
// 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
+ // }
309
310
310
311
Ok ( ( ) )
311
312
}
You can’t perform that action at this time.
0 commit comments