Applier script

This commit is contained in:
Greyscale 2024-05-17 08:54:02 +02:00
parent e504d1a38e
commit feb8997eac
No known key found for this signature in database
GPG key ID: 74BAFF55434DA4B2
2 changed files with 14 additions and 2 deletions

5
.gitignore vendored
View file

@ -1,2 +1,3 @@
.secrets
.github/cache
/.secrets
/.github/cache
/.idea

11
Makefile Normal file
View file

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