Kaydet (Commit) 7d540bd0 authored tarafından Luboš Luňák's avatar Luboš Luňák

commit hook preventing commits with SAL_DEBUG

üst f46775a2
...@@ -64,6 +64,9 @@ sub check_whitespaces($) ...@@ -64,6 +64,9 @@ sub check_whitespaces($)
if (/^(?:[<>=]){7}$/) { if (/^(?:[<>=]){7}$/) {
bad_line("unresolved merge conflict", $src_full); bad_line("unresolved merge conflict", $src_full);
} }
if (/SAL_DEBUG/) {
bad_line("temporary debug in commit", $_, $src_limited);
}
} }
} }
if ( $found_bad) if ( $found_bad)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment