Files
bizhang_-obav/Tools/check_code_style.sh

24 lines
481 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2016-04-21 17:29:49 -04:00
file=$1
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
if [ -f "$file" ];
then
${DIR}/fix_code_style.sh --dry-run $file | grep --quiet Formatted
if [[ $? -eq 0 ]]
then
2016-06-21 11:49:42 -04:00
${DIR}/fix_code_style.sh --quiet < $file > $file.pretty
echo
git --no-pager diff --no-index --minimal --histogram --color=always $file $file.pretty
2016-06-21 11:49:42 -04:00
echo
rm -f $file.pretty
echo $file 'bad formatting, please run "./Tools/fix_code_style.sh' $file'"'
exit 1
fi
fi
2016-04-21 17:29:49 -04:00