Don't display error for fsck error 8 (operational)

This commit is contained in:
Taylor Helsper 2020-08-06 18:10:32 -05:00
parent 23a22d6a23
commit b19a944044

View File

@ -84,7 +84,7 @@ if [ $IS_X86 = 0 ]; then
RC=$?
echo "" >> /tmp/fsck_results
echo "Code: $RC" >> /tmp/fsck_results
if [ "$RC" -ne 0 ]; then
if [ "$RC" -ne 0 ] && [ "$RC" -ne 8 ] ; then
touch /tmp/fsck_error
fi
done