Compare commits

...

2 commits

Author SHA1 Message Date
Imbus
2657eb9091 Tar excludes doc directory 2024-05-11 15:27:46 +02:00
Imbus
be8ba5c291 Readme 2024-05-11 15:26:57 +02:00
2 changed files with 5 additions and 1 deletions

1
README.md Normal file
View file

@ -0,0 +1 @@
# XL

View file

@ -21,7 +21,10 @@ test:
./gradlew test
$(TARNAME):
git ls-files -z | xargs -0 tar -czf $(TARNAME)
git archive --format=tar --prefix=$(DIRNAME)/ HEAD > intermediate.tar
tar -f intermediate.tar --delete $(DIRNAME)/doc
gzip -9 -c intermediate.tar > $(TARNAME)
rm intermediate.tar
$(TARNAME).minisig: $(TARNAME)
minisign -Sm $(TARNAME)