onionshare/install/build_exe.bat

18 lines
524 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
signtool.exe sign /v /d "OnionShare" /a /tr http://time.certum.pl/ 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
signtool.exe sign /v /d "OnionShare" /a /tr http://time.certum.pl/ dist\onionshare-setup.exe