blob: cd4efdc2017227f6d72177b0b0b8ea70c54c29c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
set -x
set -e
docker exec -t builder subsurface/scripts/build.sh -both 2>&1 | tee build.log
# fail the build if we didn't create the target binary
grep /workspace/install-root/bin/subsurface build.log
grep /workspace/install-root/bin/subsurface-mobile build.log
|