1
0
Evan Almloff 1 жил өмнө
parent
commit
1acfd46b0b

+ 1 - 5
packages/cli/src/server/fullstack/mod.rs

@@ -140,11 +140,7 @@ impl FullstackServerEnvGuard {
         Self {
             old_rustflags: (!debug).then(|| {
                 let old_rustflags = std::env::var("RUSTFLAGS").unwrap_or_default();
-                let debug_assertions = if release {
-                    ""
-                } else {
-                    " -C debug-assertions"
-                };
+                let debug_assertions = if release { "" } else { " -C debug-assertions" };
 
                 std::env::set_var(
                     "RUSTFLAGS",