2024-05-17 06:54:02 +00:00
|
|
|
apply:
|
2024-05-17 07:49:08 +00:00
|
|
|
ls -1 ../docker | xargs \
|
2024-05-17 06:54:02 +00:00
|
|
|
-I {} \
|
|
|
|
|
rsync \
|
2024-05-17 07:49:08 +00:00
|
|
|
-arv \
|
|
|
|
|
--no-links \
|
2024-05-17 06:54:02 +00:00
|
|
|
--exclude='.git' \
|
|
|
|
|
--exclude='Makefile' \
|
|
|
|
|
--exclude='.gitignore' \
|
|
|
|
|
--exclude='.github/cache' \
|
2024-05-17 07:49:08 +00:00
|
|
|
--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
|