ci: Clear output directory at start of build

Clear the output directory before the start of the build instead of at
the end. This leaves the output directory intact when an error occurs or
if building a single platform.

Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
diff --git a/ci/build-all-defconfigs.sh b/ci/build-all-defconfigs.sh
index 92db788..61c3bbf 100755
--- a/ci/build-all-defconfigs.sh
+++ b/ci/build-all-defconfigs.sh
@@ -36,6 +36,7 @@
 fi
 
 for i in ${DEFCONFIGS[@]}; do
+        rm -rf output/*
         op-build $i
         echo 'BR2_CCACHE=y' >> output/.config
         echo "BR2_CCACHE_DIR=\"$CCACHE_DIR\"" >> output/.config
@@ -48,7 +49,6 @@
         mv output/images/* $1/$i-images/
         mv output/.config $1/$i-images/.config
 	lsb_release -a > $1/$i-images/lsb_release
-        rm -rf output/*
         if [ $r -ne 0 ]; then
         	exit $r
         fi