build/clean/u-boot: remove unnecesssary check

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe 2023-05-20 21:47:32 +01:00
parent 676efbb0df
commit d1935c0590
1 changed files with 0 additions and 7 deletions

View File

@ -20,18 +20,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This script assumes that the current working directory is the root
[ "x${DEBUG+set}" = 'xset' ] && set -v
set -u -e
# clean u-boot builds (dependencies for 'build'):
printf "Cleaning u-boot builds for all boards\n"
[ ! -d "coreboot/" ] && exit 0
# clean u-boot (source archives preserved)
for board in u-boot/*; do
if [ "${board##*/}" = "u-boot" ] || [ ! -d "${board}" ]; then
continue