mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
parent
2345a57940
commit
00089639fe
3 changed files with 42 additions and 1 deletions
|
@ -4,6 +4,8 @@ edition = "2018"
|
||||||
name = "taskchampion-cli"
|
name = "taskchampion-cli"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
|
|
||||||
|
build = "build.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dirs-next = "^2.0.0"
|
dirs-next = "^2.0.0"
|
||||||
env_logger = "^0.8.3"
|
env_logger = "^0.8.3"
|
||||||
|
|
34
cli/build.rs
Normal file
34
cli/build.rs
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
use std::process::Command;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
// Query HEAD revision and expose as $TC_GIT_REV during build
|
||||||
|
//
|
||||||
|
// Adapted from https://stackoverflow.com/questions/43753491
|
||||||
|
let cmd = Command::new("git")
|
||||||
|
.args(&["rev-parse", "--short", "HEAD"])
|
||||||
|
.spawn()
|
||||||
|
// Wait for process to exit
|
||||||
|
.and_then(|cmd| cmd.wait_with_output())
|
||||||
|
// Handle error if failed to launch git
|
||||||
|
.map_err(|_e| println!("cargo:warning=Failed to run 'git' to determine HEAD rev"))
|
||||||
|
// Remap to Some/None for simpler error handling
|
||||||
|
.ok()
|
||||||
|
// Handle command failing
|
||||||
|
.and_then(|o| {
|
||||||
|
if o.status.success() {
|
||||||
|
Some(o)
|
||||||
|
} else {
|
||||||
|
println!(
|
||||||
|
"cargo:warning='git' exited with non-zero exit code while determining HEAD rev"
|
||||||
|
);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// Get output as UTF-8 string
|
||||||
|
.map(|out| String::from_utf8(out.stdout).expect("Invalid output in stdout"));
|
||||||
|
|
||||||
|
// Only output git rev if successful
|
||||||
|
if let Some(h) = cmd {
|
||||||
|
println!("cargo:rustc-env=TC_GIT_REV={}", h);
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,8 +3,13 @@ use termcolor::{ColorSpec, WriteColor};
|
||||||
pub(crate) fn execute<W: WriteColor>(w: &mut W) -> anyhow::Result<()> {
|
pub(crate) fn execute<W: WriteColor>(w: &mut W) -> anyhow::Result<()> {
|
||||||
write!(w, "TaskChampion ")?;
|
write!(w, "TaskChampion ")?;
|
||||||
w.set_color(ColorSpec::new().set_bold(true))?;
|
w.set_color(ColorSpec::new().set_bold(true))?;
|
||||||
writeln!(w, "{}", env!("CARGO_PKG_VERSION"))?;
|
write!(w, "{}", env!("CARGO_PKG_VERSION"))?;
|
||||||
w.reset()?;
|
w.reset()?;
|
||||||
|
|
||||||
|
if let Some(h) = option_env!("TC_GIT_REV") {
|
||||||
|
write!(w, " (git rev: {})", h)?;
|
||||||
|
}
|
||||||
|
writeln!(w)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue