diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-04-24 20:38:49 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-04-30 22:10:33 +0200 |
commit | c8cadd8bec1350b28c0042a18055eb2c7db096c6 (patch) | |
tree | 9521cbcd824b068e3069493fe152c841ab066f6b /docker/builder.sh | |
parent | 37ed577a6b8de8a43fb67f30e7a0c7460a4c04a9 (diff) |
[pkg] two-stage build for windows to allow signed uninstaller
Diffstat (limited to 'docker/builder.sh')
-rwxr-xr-x | docker/builder.sh | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/docker/builder.sh b/docker/builder.sh index 2767d61..a7a2a40 100755 --- a/docker/builder.sh +++ b/docker/builder.sh @@ -10,7 +10,18 @@ make prepare make build case $XBUILD in win) - make package_win + if [ "$STAGE" = "1" ]; then + echo "" + echo "[+] Bulding WIN installer >>>>>>>>>>> STAGE 1" + make package_win_stage_1 + echo "" + fi + if [ "$STAGE" = "2" ]; then + echo "" + echo "[+] Building WIN installer >>>>>>>>>> STAGE 2" + make package_win_stage_2 + echo "" + fi ;; osx) make package_osx |