From da9b83f81ea77352d57796adef07757138c21251 Mon Sep 17 00:00:00 2001 From: BrianTeeman Date: Tue, 18 Mar 2025 10:45:18 +0000 Subject: [PATCH] [5.3] Remove non-distributed files During the build process off a new release or update we remove various files that should not or do not need to be distributed This PR extends the list of files to be removed from the libraries/vendor folder to include .drone.yml .drone.jsonnet Examples can be seen in most of the libraries/vendor/joomla folders Signed-off-by: BrianTeeman --- build/build.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/build.php b/build/build.php index 84d485d938b08..bf84fc6008d13 100644 --- a/build/build.php +++ b/build/build.php @@ -122,6 +122,8 @@ function clean_checkout(string $dir) system('find libraries/vendor -name _config.yml | xargs rm -rf -'); system('find libraries/vendor -name .bowerrc | xargs rm -rf -'); system('find libraries/vendor -name bower.json | xargs rm -rf -'); + system('find libraries/vendor -name .drone.yml | xargs rm -rf -'); + system('find libraries/vendor -name .drone.jsonnet | xargs rm -rf -'); system('rm -rf libraries/vendor/bin'); // aldo26-matthias/idna-convert