mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 18:45:55 +00:00
18 lines
552 B
Bash
18 lines
552 B
Bash
#!/usr/bin/env sh
|
|
set -ex
|
|
apt -y update
|
|
DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata
|
|
apt -y install software-properties-common curl git gnupg
|
|
curl -sk -o rippled-pubkeys.txt "${GIT_SIGN_PUBKEYS_URL}"
|
|
gpg --import rippled-pubkeys.txt
|
|
if git verify-commit HEAD; then
|
|
echo "git commit signature check passed"
|
|
else
|
|
echo "git commit signature check failed"
|
|
git log -n 5 --color \
|
|
--pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an> [%G?]%Creset' \
|
|
--abbrev-commit
|
|
exit 1
|
|
fi
|
|
|