summaryrefslogtreecommitdiffstats
path: root/build/windows
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2018-10-23 16:17:40 -0500
committerBe <be@mixxx.org>2018-10-23 16:17:40 -0500
commita41630af3c99f908e57e23fac12cf3969ffb7a1f (patch)
tree43b18185985c3d805d3e0053a6ea6ea2e0288784 /build/windows
parent9c353dbfda68159521b55b2fbc42d053085cef0a (diff)
parentfafae5cc6fd397e76da9ada9c50115125b9c923f (diff)
Merge remote-tracking branch 'upstream/2.2'
Diffstat (limited to 'build/windows')
-rw-r--r--build/windows/signtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/windows/signtool.py b/build/windows/signtool.py
index 00a3ac8c16..c5fcc26309 100644
--- a/build/windows/signtool.py
+++ b/build/windows/signtool.py
@@ -7,7 +7,7 @@ from SCons.Script import *
def signtool_path(subject_name, path):
print("Running signtool: ", path)
- command = "signtool sign /n \"%s\" /v /debug %s" % (subject_name, path)
+ command = "signtool sign /sm /n \"%s\" /v %s" % (subject_name, path)
if os.system(command) != 0:
raise Exception('signtool failed: ' + command)