Compare commits

...

1 commit

Author SHA1 Message Date
Earl Warren
f531e9753a
fix: reuse tea if already installed 2025-07-27 12:02:39 +02:00

View file

@ -29,7 +29,7 @@ export GNUPGHOME
setup_tea() {
if which tea 2>/dev/null; then
TEA_BIN=$(which tea)
else ! test -f $TEA_BIN;
elif ! test -f $TEA_BIN; then
ARCH=$(dpkg --print-architecture)
curl -sL https://dl.gitea.io/tea/$TEA_VERSION/tea-$TEA_VERSION-linux-"$ARCH" >$TEA_BIN
chmod +x $TEA_BIN