瀏覽代碼

fix formatting

Evan Almloff 1 年之前
父節點
當前提交
1acfd46b0b
共有 1 個文件被更改,包括 1 次插入5 次删除
  1. 1 5
      packages/cli/src/server/fullstack/mod.rs

+ 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",