Jonas Kruckenberg 2 лет назад
Родитель
Сommit
020efa4dfa
1 измененных файлов с 14 добавлено и 6 удалено
  1. 14 6
      tooling/cli/src/interface/rust/desktop.rs

+ 14 - 6
tooling/cli/src/interface/rust/desktop.rs

@@ -310,12 +310,20 @@ fn build_command(
 
   // set the rust --remap-path-prefix flags to strip absolute paths that could leak usernames or other PII from panic messages and debug symbols
   // see https://github.com/tauri-apps/tauri/issues/6538 for context
-  let mut rustflags = std::env::var("RUSTFLAGS")
-    .unwrap_or_default();
-
-  rustflags.push_str(&format!(" --remap-path-prefix={}=", std::env::current_dir().unwrap().display()));
-  rustflags.push_str(&format!(" --remap-path-prefix={}=cargo", env!("CARGO_HOME")));
-  rustflags.push_str(&format!(" --remap-path-prefix={}=rustup", env!("RUSTUP_HOME")));
+  let mut rustflags = std::env::var("RUSTFLAGS").unwrap_or_default();
+
+  rustflags.push_str(&format!(
+    " --remap-path-prefix={}=",
+    std::env::current_dir().unwrap().display()
+  ));
+  rustflags.push_str(&format!(
+    " --remap-path-prefix={}=cargo",
+    env!("CARGO_HOME")
+  ));
+  rustflags.push_str(&format!(
+    " --remap-path-prefix={}=rustup",
+    env!("RUSTUP_HOME")
+  ));
 
   build_cmd.envs([("RUSTFLAGS", rustflags)]);