diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-20 21:47:32 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-20 21:48:12 +0100 |
commit | d1935c05902eebbe128fa7e5665bff83934d7920 (patch) | |
tree | 6c4ef7bb0ce1ccf9f5bf4b16f1849cf24aeb351c /resources/scripts/build | |
parent | 676efbb0df01ef87132411b68341ef150fa5adbf (diff) |
build/clean/u-boot: remove unnecesssary check
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/scripts/build')
-rwxr-xr-x | resources/scripts/build/clean/u-boot | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/resources/scripts/build/clean/u-boot b/resources/scripts/build/clean/u-boot index fd1a304e..6a59a5c1 100755 --- a/resources/scripts/build/clean/u-boot +++ b/resources/scripts/build/clean/u-boot @@ -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 |