11 lines
204 B
Makefile
11 lines
204 B
Makefile
apply:
|
|
ls -1 ../ | xargs \
|
|
-I {} \
|
|
rsync \
|
|
-ar \
|
|
--exclude='.git' \
|
|
--exclude='Makefile' \
|
|
--exclude='.gitignore' \
|
|
--exclude='.github/cache' \
|
|
. ../{}/
|
|
rm ../*/LICENSE.md || true
|