Compare commits

...

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ def main():
# login = input("type your smtp login: ")
# password = getpass.getpass(prompt="type your password and press enter:")
# context = ssl.create_default_context(cafile="/usr/local/share/ca-certificates/own.crt")
# with smtplib.smtp_ssl(server, 465, context=context) as smtp:
# with smtplib.SMTP_SSL(server, 465, context=context) as smtp:
# smtp.login(login, password)
agir_key = getpass.getpass(prompt=f"Type {AGIR_URL} API key:")

View File

@ -28,7 +28,7 @@ function download() {
gpg --keyserver keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
gpg --verify $BINDIR/gitea-$VERSION-linux-amd64.asc $BINDIR/gitea-$VERSION-linux-amd64
chmod u+x $BINDIR/gitea-$VERSION-linux-amd64
chown gitea.gitea $BINDIR/gitea-$VERSION-linux-amd64
chown gitea:gitea $BINDIR/gitea-$VERSION-linux-amd64
set +x
}