Skip to content

Commit

Permalink
Run 'git describe' instead of 'git-describe'.
Browse files Browse the repository at this point in the history
It's been, uh, a few years since that requirement changed.
  • Loading branch information
apenwarr committed Sep 7, 2020
1 parent b9589f4 commit e2a0b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion out/Autobuilder.pm
Expand Up @@ -228,7 +228,7 @@ sub git_describe($)
my $commit = shift;
if (-d '../build/.') {
return stripwhite(
`cd ../build && git-describe --contains --all $commit`);
`cd ../build && git describe --contains --all $commit`);
} else {
return stripwhite(catfile("describe/$commit"));
}
Expand Down

0 comments on commit e2a0b7e

Please sign in to comment.