Create annotated tags, meant for releases, instead of lightweight (#3512)

This commit is contained in:
Badlop 2021-02-12 20:40:40 +01:00
parent 4495f0f0b9
commit 18c9f5eedf
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ sub git_tag {
my ($dep, $ver, $msg) = @_;
system("git", "-C", ".deps-update/$dep", "commit", "-a", "-m", $msg);
system("git", "-C", ".deps-update/$dep", "tag", $ver);
system("git", "-C", ".deps-update/$dep", "tag", $ver, "-a", "-m", $msg);
}
sub git_push {