mirror of
https://github.com/onionshare/onionshare.git
synced 2025-10-11 04:38:43 -04:00
moved build scripts into install folder (#181)
This commit is contained in:
parent
669750be37
commit
245ddd0300
18 changed files with 29 additions and 21 deletions
14
install/build_exe.bat
Normal file
14
install/build_exe.bat
Normal file
|
@ -0,0 +1,14 @@
|
|||
REM use pyinstaller to builder a folder with onionshare.exe
|
||||
pyinstaller -y install\onionshare-win.spec
|
||||
|
||||
REM sign onionshare.exe
|
||||
signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\onionshare\onionshare.exe
|
||||
|
||||
REM run onionshare once, to compile the .py files into .pyc
|
||||
dist\onionshare\onionshare.exe --help
|
||||
|
||||
REM build an installer, dist\OnionShare_Setup.exe
|
||||
makensisw install\onionshare.nsi
|
||||
|
||||
REM sign OnionShare_Setup.exe
|
||||
signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\OnionShare_Setup.exe
|
Loading…
Add table
Add a link
Reference in a new issue