aboutsummaryrefslogtreecommitdiff
path: root/helix-term/build.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-11-21 11:06:45 +0000
committerBlaž Hrastnik2021-11-21 11:06:45 +0000
commitd1854d8e6af07cd78ab6c24c859a4471afb3514e (patch)
tree301e4212e7fc88dd5f626f884bd78b700cf3e4a6 /helix-term/build.rs
parent8b85903116fdfdc177bf2ca171831674144de70a (diff)
parentb95c9470de9f9199f109fdbfb6ec9a951fbe8866 (diff)
Merge remote-tracking branch 'origin/master' into debug
Diffstat (limited to 'helix-term/build.rs')
-rw-r--r--helix-term/build.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/helix-term/build.rs b/helix-term/build.rs
new file mode 100644
index 00000000..61ffa6f4
--- /dev/null
+++ b/helix-term/build.rs
@@ -0,0 +1,12 @@
+use std::process::Command;
+
+fn main() {
+ let git_hash = Command::new("git")
+ .args(&["describe", "--dirty"])
+ .output()
+ .map(|x| String::from_utf8(x.stdout).ok())
+ .ok()
+ .flatten()
+ .unwrap_or_else(|| String::from(env!("CARGO_PKG_VERSION")));
+ println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", git_hash);
+}