We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd7619b commit e26e905Copy full SHA for e26e905
1 file changed
pre_commit_hooks/check_git_config_email.py
@@ -33,6 +33,8 @@ def main(argv=None):
33
user_email = user_email.decode().strip()
34
if not any((user_email.endswith(x) for x in args.domains)):
35
print("Git config email is from an unexpected domain.")
36
+ print("Git config email: " + user_email)
37
+ print("Expected domains: " + str(args.domains))
38
retval = 1
39
40
return retval
0 commit comments