Please work

This commit is contained in:
apio 2022-12-05 19:07:01 +01:00
parent adf6844d49
commit f767d98037
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -14,7 +14,7 @@ for f in ${SOURCES[@]}
do
clang-format -n $f 2>&1 | grep -q ^
RESULT=$?
if [ "$RESULT" = "0" ]
if [ "$RESULT" -eq "0" ]
then
echo "File $f needs formatting"
ALL_OK=0