blob: 40132691cb9aa2bb0e6129133ed1dfb512d31a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# should be called periodically on the build-master from the slaves to
# - report any update on the build process
# - show that the build is still running
# - get notified by the build master if the build is not necessary anymore
# shellcheck source=conf/default.conf
. "${0%/*}/../conf/default.conf"
# TODO: acutally do something here :-)
|