Daniel García
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
build.rs
|
@ -1,7 +1,7 @@ |
|
|
use std::process::Command; |
|
|
use std::process::Command; |
|
|
|
|
|
|
|
|
fn main() { |
|
|
fn main() { |
|
|
read_git_info().expect("Unable to read Git info"); |
|
|
read_git_info().ok(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
fn run(args: &[&str]) -> Result<String, std::io::Error> { |
|
|
fn run(args: &[&str]) -> Result<String, std::io::Error> { |
|
|