Route verify-boilerplate output to stderr

parent 3a9e1154
...@@ -28,7 +28,7 @@ files_need_boilerplate=($(${boiler} "$@")) ...@@ -28,7 +28,7 @@ files_need_boilerplate=($(${boiler} "$@"))
# Run boilerplate check # Run boilerplate check
if [[ ${#files_need_boilerplate[@]} -gt 0 ]]; then if [[ ${#files_need_boilerplate[@]} -gt 0 ]]; then
for file in "${files_need_boilerplate[@]}"; do for file in "${files_need_boilerplate[@]}"; do
echo "Boilerplate header is wrong for: ${file}" echo "Boilerplate header is wrong for: ${file}" >&2
done done
exit 1 exit 1
......
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