Tweaks output and commit message in gitian-build.sh

We are not building signed Win/OSX binaries, so all our Gitian signatures are "unsigned".
This commit is contained in:
Kevin Gallagher 2016-10-17 14:58:48 -07:00
parent 0ac8f95c82
commit 76eb7a3272
1 changed files with 5 additions and 5 deletions

View File

@ -207,11 +207,11 @@ then
then
# Commit to gitian.sigs repo
echo ""
echo "Committing ${VERSION} Unsigned Sigs"
echo "Committing ${VERSION} Signatures"
echo ""
pushd gitian.sigs
git add ${VERSION}/${SIGNER}
git commit -a -m "Add ${VERSION} unsigned sigs for ${SIGNER}"
git commit -a -m "Add ${VERSION} signatures for ${SIGNER}"
popd
fi
fi
@ -222,7 +222,7 @@ then
# Linux
pushd ./gitian-builder
echo ""
echo "Verifying v${VERSION} Linux"
echo "Verifying ${VERSION} Linux"
echo ""
./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION} ../zcash/contrib/gitian-descriptors/gitian-linux.yml
popd
@ -240,9 +240,9 @@ then
# Commit Sigs
pushd gitian.sigs
echo ""
echo "Committing ${VERSION} Signed Sigs"
echo "Committing ${VERSION} Signed Binary Signatures"
echo ""
git commit -a -m "Add ${VERSION} signed binary sigs for ${SIGNER}"
git commit -a -m "Add ${VERSION} signed binary signatures for ${SIGNER}"
popd
fi
fi