1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

fixed create-archive.sh

This commit is contained in:
Rene Schallner 2023-05-01 06:19:22 +02:00
parent ff8c0809cb
commit c0ceb92481

View file

@ -15,7 +15,9 @@ fi
git archive --format=tar.gz -o ${tag}.tar.gz --prefix=zap-$tag/ HEAD
if [ git diff --quiet ] ; then
git diff --quiet
if [ $? -ne 0 ] ; then
if [ "$override" == "--override" ] ; then
./zig-out/bin/pkghash -g --tag=$tag --template=doc/release-template.md
else