blob: 0f1c42cd9902244c3b0589758a9ebf729aa9e672 [file] [log] [blame]
#!/bin/sh
./otp_build boot -a 2>&1 | tee $ERL_TOP/build_boot.txt
echo DONE. | tee -a $ERL_TOP/build_boot.txt
./otp_build release -a 2>&1 | tee $ERL_TOP/build_release.txt
echo DONE. | tee -a $ERL_TOP/build_release.txt
# needed to get the same vcredist build as SxW manifests into installer .exe
## cp $ERL_TOP/../vcredist_x86.exe $ERL_TOP/release/win32/
./otp_build installer_win32 2>&1 | tee $ERL_TOP/build_installer_win32.txt
mv --force $ERL_TOP/release/win32/otp_win32_R*.exe /relax/release/ 2>&1 | tee -a $ERL_TOP/build_installer_win32.txt
./release/win32/Install.exe -s 2>&1 | tee -a $ERL_TOP/build_release.txt
echo DONE. | tee -a $ERL_TOP/build_release.txt