_standard_repo_parts/Makefile

24 lines
514 B
Makefile

apply:
ls -1 ../docker | xargs \
-I {} \
rsync \
-arv \
--no-links \
--exclude='.git' \
--exclude='Makefile' \
--exclude='.gitignore' \
--exclude='.github/cache' \
--exclude='.trunk/plugins' \
. ../docker/{}/
ls -1 ../php | xargs \
-I {} \
rsync \
-arv \
--no-links \
--exclude='.git' \
--exclude='Makefile' \
--exclude='.gitignore' \
--exclude='.github/cache' \
--exclude='.trunk/plugins' \
. ../php/{}/
rm ../docker/*/LICENSE* ../php/*/LICENSE* || true