onionshare/install/build_exe.bat
2018-01-17 14:26:15 -08:00

18 lines
546 B
Batchfile

REM delete old dist files
rmdir /s /q dist
REM build onionshare-gui.exe
pyinstaller install\pyinstaller.spec -y
REM download tor
python install\get-tor-windows.py
REM sign onionshare-gui.exe
signtool.exe sign /v /d "OnionShare" /a /tr http://time.certum.pl/ /fd sha256 dist\onionshare\onionshare-gui.exe
REM build an installer, dist\onionshare-setup.exe
makensis.exe install\onionshare.nsi
REM sign onionshare-setup.exe
signtool.exe sign /v /d "OnionShare" /a /tr http://time.certum.pl/ /fd sha256 dist\onionshare-setup.exe