For now I changed sign_files to skip if the SIGN_CERTIFICATE_KEY is missing.
There was already an instruction to do that but with a bug as isfile() was missing.
Wouldn't be better to version geany-release.py and geany-plugins-release.py in the respective git repos rather than hosting in the wiki?

def sign_files(*paths):
    if not isfile(SIGN_CERTIFICATE_KEY):
        print('Skipped signing {} as {} not found'.format(paths, SIGN_CERTIFICATE_KEY))
        return
    for item in paths:
    ...


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/issues/4189/2628977349@github.com>