]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/miri/build.rs
Rollup merge of #103468 - chenyukang:yukang/fix-103435-extra-parentheses, r=estebank
[rust.git] / src / tools / miri / build.rs
index 37c626baab58a49a6388f8336a28b27ab03f7926..0977c0ba016bd6d93973b69130b97edcdc5344bc 100644 (file)
@@ -4,5 +4,5 @@ fn main() {
     // Re-export the TARGET environment variable so it can
     // be accessed by miri.
     let target = std::env::var("TARGET").unwrap();
-    println!("cargo:rustc-env=TARGET={}", target);
+    println!("cargo:rustc-env=TARGET={target}");
 }