Merge pull request #14040 from kaspar030/unforce_uncrustify

dist/tools/uncrustify: temporarily disable error on check failure
This commit is contained in:
Francisco 2020-05-07 14:51:49 +02:00 committed by GitHub
commit 8567ba0cbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,10 @@ check () {
--check > /dev/null 2>&1 || {
echo "file $F needs to be uncrustified."
echo "Please run 'dist/tools/uncrustify/uncrustify.sh'"
exit 1
# Disable error until versioning issue is sorted out.
#exit 1
exit 0
}
done
echo "All files are uncrustified!"