Files
bizhang_-obav/Tools/check_code_style.sh

17 lines
296 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
echo $file 'bad formatting, please run "./Tools/fix_code_style.sh' $file'"'
exit 1
fi
fi
2016-04-21 17:29:49 -04:00