ci: sr.ht: notify gitter
[m6w6/libmemcached] / .builds / scripts / maybe
1 #!/usr/bin/env bash
2 if test $# -eq 0
3 then
4 notify-gitter success
5 fi
6
7 "$@"
8 ERROR=$?
9
10 if test $ERROR -ne 0
11 then
12 notify-gitter failure
13 exit $ERROR
14 fi