Applier script
This commit is contained in:
parent
e504d1a38e
commit
feb8997eac
2 changed files with 14 additions and 2 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.secrets
|
||||
.github/cache
|
||||
/.secrets
|
||||
/.github/cache
|
||||
/.idea
|
||||
|
|
11
Makefile
Normal file
11
Makefile
Normal 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
|
Loading…
Reference in a new issue