blob: 91981108efa2688830b0bdf80d86c88f075e8948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -x
set -e
# this is run to actually trigger the creation of the AppImage
# inside the container
docker exec -t trusty-qt512 bash subsurface/scripts/linux-trusty-qt512/in-container-build.sh 2>&1 | tee build.log
# fail the build if we didn't create the target binary
grep "Please consider submitting your AppImage to AppImageHub" build.log
|