Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1612 d2fb32638 -> 0b2709f6e (forced update)
Added Jason Plurad as a validated code signer. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/18102281 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/18102281 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/18102281 Branch: refs/heads/TINKERPOP-1612 Commit: 18102281aa734ab37365651ab62148457e1bfa08 Parents: ed1cc29 Author: Jason Plurad <plur...@apache.org> Authored: Thu Feb 2 17:01:32 2017 +0000 Committer: Jason Plurad <plur...@apache.org> Committed: Thu Feb 2 17:03:05 2017 +0000 ---------------------------------------------------------------------- bin/validate-distribution.sh | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/18102281/bin/validate-distribution.sh ---------------------------------------------------------------------- diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh index 3c2cc95..0121a1a 100755 --- a/bin/validate-distribution.sh +++ b/bin/validate-distribution.sh @@ -28,8 +28,11 @@ TMP_DIR="/tmp/tpdv" +# Required. Only the latest version on each release stream is available on dist. VERSION=${1} +# Optional. Provide the zip file URL. URL=${2} +# Optional. Specifiy CONSOLE, SERVER, or SOURCE for additional validation. TYPE=${3} if [ -z ${VERSION} ]; then @@ -93,6 +96,7 @@ echo -n " * PGP signature ... " [ `gpg ${ZIP_FILENAME}.asc 2>&1 | grep -c '^gpg: Good signature from "Stephen Mallette <spmalle...@apache.org>"$'` -eq 1 ] || \ [ `gpg ${ZIP_FILENAME}.asc 2>&1 | grep -c '^gpg: Good signature from "Marko Rodriguez <ok...@apache.org>"$'` -eq 1 ] || \ [ `gpg ${ZIP_FILENAME}.asc 2>&1 | grep -c '^gpg: Good signature from "Theodore Ratte Wilmes (CODE SIGNING KEY) <twil...@apache.org>"'` -eq 1 ] || \ +[ `gpg ${ZIP_FILENAME}.asc 2>&1 | grep -c '^gpg: Good signature from "Jason Plurad (CODE SIGNING KEY) <plur...@apache.org>"'` -eq 1 ] || \ { echo "failed"; exit 1; } echo "OK"