onionshare/install/build_exe.bat

18 lines
606 B
Batchfile
Raw Normal View History

REM delete old dist files
rmdir /s /q dist
REM build onionshare-gui.exe
2017-01-07 21:17:15 -05:00
pyinstaller install\pyinstaller.spec -y
REM download tor
python install\get-tor-windows.py
REM sign onionshare-gui.exe
2017-04-15 15:17:43 -04:00
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll /fd sha256 dist\onionshare\onionshare-gui.exe
REM build an installer, dist\OnionShare_Setup.exe
2017-04-14 21:54:16 -04:00
makensis.exe install\onionshare.nsi
REM sign OnionShare_Setup.exe
2017-04-15 15:17:43 -04:00
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll /fd sha256 dist\OnionShare_Setup.exe