Skip to content

Commit

Permalink
feat: Add taskwarriortuitask trait ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed Sep 6, 2023
1 parent e09f460 commit 18a54f7
Show file tree
Hide file tree
Showing 17 changed files with 462 additions and 167 deletions.
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
max_width = 150
max_width = 120
tab_spaces = 2
group_imports = "StdExternalCrate"
imports_granularity = "Crate"
5 changes: 4 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ fn run_pandoc() -> Result<Output, std::io::Error> {
}

fn get_commit_hash() {
let git_output = std::process::Command::new("git").args(["rev-parse", "--git-dir"]).output().ok();
let git_output = std::process::Command::new("git")
.args(["rev-parse", "--git-dir"])
.output()
.ok();
let git_dir = git_output.as_ref().and_then(|output| {
std::str::from_utf8(&output.stdout)
.ok()
Expand Down
Loading

0 comments on commit 18a54f7

Please sign in to comment.