Explorar el Código

Use `unwrap_or_else` in build.rs

Victor Song hace 3 años
padre
commit
af267ba638
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      build.rs

+ 1 - 1
build.rs

@@ -41,7 +41,7 @@ fn main() -> io::Result<()> {
     let path = &out.join("version_string.txt");
     let path = &out.join("version_string.txt");
 
 
     // Bland version text
     // Bland version text
-    let mut f = File::create(path).expect(&path.to_string_lossy());
+    let mut f = File::create(path).unwrap_or_else(|_| { panic!("{}", path.to_string_lossy().to_string()) });
     writeln!(f, "{}", strip_codes(&ver))?;
     writeln!(f, "{}", strip_codes(&ver))?;
 
 
     Ok(())
     Ok(())