GoMathExecutor/checklicense.sh
Alexander Kiryukhin 24ca753ba3 initial commit
2020-02-13 22:55:13 +03:00

17 lines
311 B
Bash
Executable file

#!/bin/bash -e
ERROR_COUNT=0
while read -r file
do
case "$(head -1 "${file}")" in
*"Copyright (c) "*" Alexander Kiryukhin <a.kiryukhin@mail.ru>")
# everything's cool
;;
*)
echo "$file is missing license header."
(( ERROR_COUNT++ ))
;;
esac
done < <(git ls-files "*\.go")
exit $ERROR_COUNT