https://github.com/kit-parco/networkit
Raw File
Tip revision: 4ae694a5d8865e58ce58a3dc2e993326d54515e9 authored by Fabian Brandt-Tumescheit on 01 March 2020, 16:11:37 UTC
Bump version to 6.1
Tip revision: 4ae694a
check_code.sh
#!/bin/bash
set -e

echo -e "\e[31mWe will execute a number of check intended to improve code quality."
echo -e "Typically violations can be automatically fixed by executing:"
echo -e "./check_code.sh -w"
echo -e "\e[1mWhile we're trying to be careful ALWAYS keep a copy of the original around!\e[39m\e[0m"
echo

for check in CppIndentation.py CppClangFormat.py CppIncludeGuards.py; do
  echo -e "\e[32m=== Execute $check ===\e[39m"
  extrafiles/tooling/$check $@
  echo
done
back to top