Clean the REPO prior to transfer.

This commit is contained in:
Jeffrey Townsend
2018-04-20 14:10:52 +00:00
parent 180db2b739
commit 1297ea341e

View File

@@ -96,4 +96,12 @@ if ! make all; then
exit 1 exit 1
fi 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. echo Build Succeeded.