25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

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

View File

@ -332,7 +332,7 @@ sub git_tag {
my ($dep, $ver, $msg) = @_; my ($dep, $ver, $msg) = @_;
system("git", "-C", ".deps-update/$dep", "commit", "-a", "-m", $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 { sub git_push {