mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-30 09:46:15 -05:00
12 lines
513 B
Batchfile
12 lines
513 B
Batchfile
REM use PyInstaller to builder a folder with onionshare.exe
|
|
pyinstaller install/pyinstaller.spec
|
|
|
|
REM sign onionshare.exe
|
|
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll /fd sha256 dist\onionshare.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://timestamp.globalsign.com/scripts/timstamp.dll /fd sha256 dist\OnionShare_Setup.exe
|