monoburg 60: Fix the recipient of Vcs' messages

Vcs' messages go to the projects list instead of the tiger-patches list, as for Nolimips and HAVM. https://svn.lrde.epita.fr/svn/monoburg ChangeLog | 7 +++++++ vcs/monoburg.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) Index: ChangeLog from Roland Levillain <roland@lrde.epita.fr> Fix the recipient of Vcs' messages. * vcs/monoburg.rb (Vcs::monoburg_commit): Send messages to projects@lrde.epita.fr. 2006-06-16 Roland Levillain <roland@lrde.epita.fr> Index: vcs/monoburg.rb --- vcs/monoburg.rb (révision 58) +++ vcs/monoburg.rb (copie de travail) @@ -7,7 +7,7 @@ def monoburg_commit! ( *args ) common_commit!("monoburg <%= rev %>: <%= title %>", *args) do |subject| - mail!(:to => %w[tiger-patches@lrde.epita.fr], :subject => subject) + mail!(:to => %w[projects@lrde.epita.fr], :subject => subject) end end alias_command :mbci, :monoburg_commit
participants (1)
-
Roland Levillain