Skip to content

Commit

Permalink
tag the build with a commit hash, even in the case where there's no t…
Browse files Browse the repository at this point in the history
…ag, and the case where the tag points at the tip
  • Loading branch information
zancas committed Feb 6, 2024
1 parent 1a0fb7b commit 72c4675
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 72c4675

Please sign in to comment.