summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2015-05-18 17:04:26 -0700
committerMicah Lee <micah@micahflee.com>2015-05-18 17:04:26 -0700
commit886c30759223b3a40222c3016bc1cbcdf9582729 (patch)
treebe3cfa657433f92252fdda9dc5766198c343f0a2
parent90af3f2e128d414205ed861b989779d061bcc5b1 (diff)
downloadonionshare-886c30759223b3a40222c3016bc1cbcdf9582729.tar.gz
onionshare-886c30759223b3a40222c3016bc1cbcdf9582729.zip
replacing signtool.exe timestamp server with globalsign one, because startssl is having problems
-rw-r--r--install/build_exe.bat4
-rw-r--r--install/onionshare.nsi2
2 files changed, 3 insertions, 3 deletions
diff --git a/install/build_exe.bat b/install/build_exe.bat
index b8cfc51d..4c8b48ab 100644
--- a/install/build_exe.bat
+++ b/install/build_exe.bat
@@ -2,7 +2,7 @@ REM use pyinstaller to builder a folder with onionshare.exe
pyinstaller -y install\onionshare-win.spec
REM sign onionshare.exe
-signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\onionshare\onionshare.exe
+signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll dist\onionshare\onionshare.exe
REM run onionshare once, to compile the .py files into .pyc
dist\onionshare\onionshare.exe --help
@@ -11,4 +11,4 @@ REM build an installer, dist\OnionShare_Setup.exe
makensisw install\onionshare.nsi
REM sign OnionShare_Setup.exe
-signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\OnionShare_Setup.exe
+signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll dist\OnionShare_Setup.exe
diff --git a/install/onionshare.nsi b/install/onionshare.nsi
index d87c2d84..88e9e716 100644
--- a/install/onionshare.nsi
+++ b/install/onionshare.nsi
@@ -41,7 +41,7 @@ ${EndIf}
!echo "Creating normal installer"
!system "$\"${NSISDIR}\makensis$\" /DINNER onionshare.nsi" = 0
!system "$%TEMP%\tempinstaller.exe" = 2
- !system "signtool.exe sign /v /d $\"Uninstall OnionShare$\" /a /tr http://www.startssl.com/timestamp $%TEMP%\uninstall.exe" = 0
+ !system "signtool.exe sign /v /d $\"Uninstall OnionShare$\" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll $%TEMP%\uninstall.exe" = 0
# all done, now we can build the real installer
OutFile "..\dist\OnionShare_Setup.exe"