blob: 50f9df42b5e3ba9c25bdd5a35c97cda0888b41ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# this is run to actually trigger the creation of the Windows installer
# inside the container
set -x
set -e
docker exec -t builder bash subsurface/scripts/windows-container/in-container-build.sh 2>&1 | tee build.log
# fail the build if we didn't create the target binary
grep "Built target installer" build.log
|