Avoid fatal error code from pure informational diff command

This commit is contained in:
bernd 2011-08-06 16:58:44 +02:00
parent 5c9d624a7b
commit c8ff3182c0
1 changed files with 1 additions and 1 deletions

View File

@ -54,6 +54,6 @@ for i in `find firmware -type f -name .gitignore`; do
echo WARNING: $i mismatches simulat0r/$i
echo " give this command a try if the following diff looks reasonable:"
echo " cp $i simulat0r/$i"
diff -y $i simulat0r/$i
diff -y $i simulat0r/$i || true
fi
done