Michael Stefaniuc : make_announce: Don't hardcode the 'stable' branch.
Module: wine Branch: oldstable Commit: 0a05fe63974c47780e7720c2eb23178585e0429c URL: https://source.winehq.org/git/wine.git/?a=commit;h=0a05fe63974c47780e7720c2e... Author: Michael Stefaniuc <mstefani(a)winehq.org> Date: Tue Feb 20 23:45:44 2018 +0100 make_announce: Don't hardcode the 'stable' branch. Signed-off-by: Michael Stefaniuc <mstefani(a)winehq.org> --- tools/make_announce | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make_announce b/tools/make_announce index 9e44a13..b38b7b0 100755 --- a/tools/make_announce +++ b/tools/make_announce @@ -70,7 +70,7 @@ sub get_bugs($) { my %bugs; - open QUERY, "-|" or exec "git", "log", "--notes=stable-notes", "--format=%N", "wine-" . get_current_version() . "..stable" + open QUERY, "-|" or exec "git", "log", "--notes=stable-notes", "--format=%N", "wine-" . get_current_version() . ".." or die "cannot query bug list"; while (<QUERY>) {
participants (1)
-
Alexandre Julliard