0a5b66162d6ef446e3ea3d2e1c626641ec53096c
[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