nostril

A C cli tool for creating nostr events
git clone git://jb55.com/nostril
Log | Files | Refs | Submodules | LICENSE

commit 4e28a847587a2c5a0133065c8a381aeb5675300f
parent a5e2478cfcfa286ad787650dc0d9073dc09a2641
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 17 Nov 2022 13:34:28 -0800

dist: include libsecp256k1 in tarball

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -19,7 +19,7 @@ version: nostril.c dist: docs version @mkdir -p dist - git archive HEAD --format tar.gz --prefix nostril-$(shell cat version)/ -o dist/nostril-$(shell cat version).tar.gz + git ls-files --recurse-submodules | tar --transform 's/^/nostril-$(shell cat version)\//' -T- -caf dist/nostril-$(shell cat version).tar.gz @ls -dt dist/* | head -n1 | xargs echo "tgz " cd dist;\ sha256sum *.tar.gz > SHA256SUMS.txt;\