We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 844ec9b commit 30c8d93Copy full SHA for 30c8d93
bin/check-email.rb
@@ -9,7 +9,7 @@
9
# This association will be used for committer identification of the ruby repository.
10
11
SVN_TO_EMAILS = {
12
- #"mame" => ["mame@ruby-lang.org"],
+ "mame" => ["mame@ruby-lang.org"],
13
}
14
15
LOG_FILE = "/home/git/email.log"
hooks/pre-receive.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash -eu
2
+set -o pipefail
3
+# This script is executed by `git@git.ruby-lang.org:ruby-commit-hook.git/hooks/pre-receive`.
4
+
5
+# script parameters
6
+ruby_git="/var/git/ruby.git"
7
+hook_log="/tmp/pre-receive.log"
8
+ruby_commit_hook="$(cd "$(dirname $0)"; cd ..; pwd)"
+$ruby_commit_hook/bin/check-email.rb $* || exit 1
0 commit comments