mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
16 lines
432 B
Batchfile
16 lines
432 B
Batchfile
REM build the wix file
|
|
python install\windows\build-wxs.py > install\windows\Dangerzone.wxs
|
|
|
|
REM build the msi package
|
|
cd build
|
|
mkdir wix
|
|
cd wix
|
|
candle.exe ..\..\install\windows\Dangerzone.wxs
|
|
light.exe -ext WixUIExtension Dangerzone.wixobj
|
|
|
|
REM code sign dangerzone.msi
|
|
signtool.exe sign /v /d "Dangerzone" /a /tr http://time.certum.pl/ Dangerzone.msi
|
|
|
|
REM moving Dangerzone.msi to dist
|
|
cd ..\..
|
|
move build\wix\Dangerzone.msi dist
|