From cf2ccb080ebceb66c11683d8146a8df0fa13aa82 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Thu, 3 Aug 2023 02:42:56 +0200 Subject: [PATCH] u-boot-libre: download: fix download with existing u-boot directory Signed-off-by: Denis 'GNUtoo' Carikli --- resources/scripts/download/u-boot | 6 ------ 1 file changed, 6 deletions(-) diff --git a/resources/scripts/download/u-boot b/resources/scripts/download/u-boot index 39384b6..0ab82ad 100755 --- a/resources/scripts/download/u-boot +++ b/resources/scripts/download/u-boot @@ -45,12 +45,6 @@ supported_uboot_revisions=" \ downloadfor() { uboot_revision="$1" uboot_dir="u-boot/u-boot" - if [ -d "${uboot_dir}" ]; then - printf \ - "REMARK: '%s' directory already exists. Skipping setup.\n" \ - "${uboot_dir}" - return 0 - fi if [ ! -d "${uboot_dir}" ]; then mkdir -p "${uboot_dir}"