]> git.lizzy.rs Git - rust.git/blobdiff - build.rs
silence build failures of futures-rs until https://github.com/rust-lang-nursery/futur...
[rust.git] / build.rs
index 3f1c412a7afc2518d057bf4e1dba886969e45f7b..57422945adea6d2ee8588d0e75fb0a668d5db154 100644 (file)
--- a/build.rs
+++ b/build.rs
@@ -35,9 +35,7 @@ fn main() {
 // (git not installed or if this is not a git repository) just return an empty string.
 fn commit_info() -> String {
     match (channel(), commit_hash(), commit_date()) {
-        (channel, Some(hash), Some(date)) => {
-            format!("{} ({} {})", channel, hash.trim_right(), date)
-        }
+        (channel, Some(hash), Some(date)) => format!("{} ({} {})", channel, hash.trim_end(), date),
         _ => String::new(),
     }
 }