c993b6059a
Also updates main CMakeLists.txt and CMakeLists.txt for unit tests, also adds additional build directories to .gitignore file
11 lines
238 B
Bash
Executable File
11 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
dirty=$(git ls-files --modified)
|
|
|
|
set +x
|
|
if [[ $dirty ]]; then
|
|
echo "================================="
|
|
echo "Files were not formatted properly"
|
|
echo "$dirty"
|
|
echo "================================="
|
|
exit 1
|
|
fi |