web

A collection of scripts used to generate this website
git clone https://erai.gay/code/web/
Log | Files | Refs | LICENSE

commit 5dc3585947058727729acd5201ec70e4de726965
parent 7f48602a1b9e9af4ac880bc2f4fb6272033fe5aa
Author: erai <erai@omiltem.net>
Date:   Mon, 29 Apr 2024 15:43:51 -0400

Fix sig check

Diffstat:
Mdeploy.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy.sh b/deploy.sh @@ -1,7 +1,7 @@ #!/bin/bash set -uex git pull --verify-signatures --ff-only origin main -if [ git show -s --pretty='%G?' != 'G' ]; then +if [ "$(git show -s --pretty='%G?')" != 'G' ]; then echo "Failed to verify signature" >&2 exit 1 fi