2017-04-08 17:29:00 -07:00
|
|
|
REM delete old dist files
|
2017-02-22 14:28:50 -08:00
|
|
|
rmdir /s /q dist
|
|
|
|
|
|
|
|
REM build onionshare-gui.exe
|
2017-01-07 18:17:15 -08:00
|
|
|
pyinstaller install\pyinstaller.spec -y
|
2014-06-26 18:57:28 -04:00
|
|
|
|
2017-04-08 17:29:00 -07:00
|
|
|
REM download tor
|
|
|
|
python install\get-tor-windows.py
|
|
|
|
|
2017-02-22 14:28:50 -08:00
|
|
|
REM sign onionshare-gui.exe
|
2017-04-15 12:17:43 -07:00
|
|
|
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll /fd sha256 dist\onionshare\onionshare-gui.exe
|
2014-06-26 18:57:28 -04:00
|
|
|
|
|
|
|
REM build an installer, dist\OnionShare_Setup.exe
|
2017-04-14 18:54:16 -07:00
|
|
|
makensis.exe install\onionshare.nsi
|
2014-09-24 14:05:53 -07:00
|
|
|
|
|
|
|
REM sign OnionShare_Setup.exe
|
2017-04-15 12:17:43 -07:00
|
|
|
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll /fd sha256 dist\OnionShare_Setup.exe
|