blob: b50c91e6c09f6dac065ee9631cf7adb862c4bb18 [file] [log] [blame]
#!/bin/sh
pushd $ERL_TOP
./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
./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
rm $ERL_TOP/release/win32/vcredist_x86.exe
./release/win32/Install.exe -s 2>&1 | tee -a $ERL_TOP/build_release.txt
echo DONE. | tee -a $ERL_TOP/build_release.txt
popd