From 74153a0d2222992fb9d02abcd7566f792533b39a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Jul 2016 06:37:00 +0530 Subject: [PATCH] Sign installers explicitly --- setup/installers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/installers.py b/setup/installers.py index 1872c18539..e47184229a 100644 --- a/setup/installers.py +++ b/setup/installers.py @@ -20,6 +20,7 @@ def build_single(which, bitness, shutdown=True): if bitness: cmd.append(bitness) cmd.append('calibre') + cmd.append('--sign-installers') env = os.environ.copy() env['CALIBRE_SRC_DIR'] = base ret = subprocess.Popen(cmd, env=env, cwd=build_calibre).wait()