about summary refs log tree commit diff
path: root/src/bootstrap/clean.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap/clean.rs')
-rw-r--r--src/bootstrap/clean.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bootstrap/clean.rs b/src/bootstrap/clean.rs
index c1d867a0bd1..ea8334eaeb6 100644
--- a/src/bootstrap/clean.rs
+++ b/src/bootstrap/clean.rs
@@ -26,7 +26,9 @@ impl Step for CleanAll {
     }
 
     fn run(self, builder: &Builder<'_>) -> Self::Output {
-        let Subcommand::Clean { all, .. } = builder.config.cmd else { unreachable!("wrong subcommand?") };
+        let Subcommand::Clean { all, .. } = builder.config.cmd else {
+            unreachable!("wrong subcommand?")
+        };
         clean_default(builder.build, all)
     }