mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
45c19fd11e
This is done via Fedora 27 which seemed the easiest way to get a 5.9 based distro. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
9 lines
219 B
Bash
9 lines
219 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
docker exec -t builder subsurface/scripts/build.sh -desktop 2>&1 | tee build.log
|
|
# fail the build if we didn't create the target binary
|
|
grep /workspace/install-root/bin/subsurface build.log
|
|
|