From 1297ea341e387a14e710a1307ad941a62b510508 Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Fri, 20 Apr 2018 14:10:52 +0000 Subject: [PATCH] Clean the REPO prior to transfer. --- tools/autobuild/build.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/autobuild/build.sh b/tools/autobuild/build.sh index f33fab3c..e2eab9ba 100755 --- a/tools/autobuild/build.sh +++ b/tools/autobuild/build.sh @@ -96,4 +96,12 @@ if ! make all; then exit 1 fi +make -C $ONL/REPO build-clean + +# Remove all installer/rootfs/swi packages from the repo. These do not need to be kept and take significant +# amounts of time to transfer. +find $ONL/REPO -name "*-installer_0.*" -delete +find $ONL/REPO -name "*-rootfs_0.*" -delete +find $ONL/REPO -name "*-swi_0*" -delete + echo Build Succeeded.