From 3cb295498bb6864a826c5724849193235ce4a8fd Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Wed, 8 Apr 2020 11:49:07 +0200 Subject: [PATCH] more release build bundling --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index b904d4e9..6dbae493 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,9 @@ build-release: cargo build --release strip target/release/gitui ls -lisah target/release/gitui + tar -C ./target/release/ -czvf ./target/gitui-mac.tar.gz ./gitui + ls -lisah ./target/gitui-mac.tar.gz + shasum -a 256 ./target/gitui-mac.tar.gz | awk '{printf $1}' test: cargo test --workspace