Skip to content

Commit

Permalink
tools/prepare-for-deploy.sh: ensure gpg is always installed
Browse files Browse the repository at this point in the history
  • Loading branch information
eighthave committed Apr 29, 2020
1 parent b54cab0 commit 7000437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/prepare-for-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set -e
set -x

apt-get update
apt-get -qy install --no-install-recommends ca-certificates git
apt-get -qy install --no-install-recommends ca-certificates git gpg

git remote update --prune
git fetch --tags
Expand All @@ -29,4 +29,4 @@ for tag in `git tag --sort=-taggerdate`; do
done

echo 'ERROR: could not find any signed release tags!'
exit(1)
exit 1

0 comments on commit 7000437

Please sign in to comment.