Revert "util/lint: Add test for documentation in util dirs"

This reverts commit 15e379aaf3.

It triggers on directories that only contain artifacts and no
checked in code. As this happens a lot when switching branches,
it makes it impossible to commit new code.

Change-Id: I38a86c8a5d5dc14ca5f6cba789bcb8c0fcaefb0b
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50354
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Nico Huber 2021-02-06 14:36:35 +01:00 committed by Patrick Georgi
parent b182189326
commit dd01e0131a
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
#
# DESCR: Check that every utility has a description
LC_ALL=C export LC_ALL
FAIL=0
for i in util/*/; do
if [ ! -r "$i/description.md" ]; then
echo " Failure: util directory $i missing description.md file."
FAIL=1
fi
done
exit $FAIL