Skip to content

Commit

Permalink
Merge pull request #807 from zancas/update_tag_to_always_include_comm…
Browse files Browse the repository at this point in the history
…it_hash

tag the build with a commit hash, even in the case where there's no t…
  • Loading branch information
fluidvanadium authored Feb 8, 2024
2 parents 1a0fb7b + 72c4675 commit ea612d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub fn git_description() {
.output()
.expect("Failed to execute git command");
let output = Command::new("git")
.args(["describe", "--dirty"])
.args(["describe", "--dirty", "--always", "--long"])
.output()
.expect("Failed to execute git command");

Expand Down

0 comments on commit ea612d3

Please sign in to comment.