update ci
[awesomized/libmemcached] / .builds / scripts / notify-gitter
index c5f1f2bd8c7fb5005bb438201600d80a2b6f36a9..cac46b7598a0f6797ffc8ad1f169f6cbd40e0eb0 100755 (executable)
@@ -9,13 +9,18 @@ REF=$(GIT_DIR=libmemcached/.git git describe --abbrev --always)
 REF_URL=https://github.com/${REPO}/commits/${REF}
 
 BUILD_URL=${JOB_URL}
-BUILD_TAG=$(uname -o)
-if test "$BUILD_TAG" = "GNU/Linux"
+BUILD_TAG=$(uname -o 2>/dev/null || uname -s)
+if expr match "$BUILD_TAG" ".*Linux" >/dev/null
 then
        BUILD_TAG=$(lsb_release -irs)
 fi
 BUILD_CXX=$(c++ --version | head -1)
-BUILD_ENV=${BUILD_TAG}/${BUILD_CXX}
+if expr match "${BUILD_CXX}" "${BUILD_TAG}" >/dev/null
+then
+       BUILD_ENV="${BUILD_CXX}"
+else
+       BUILD_ENV="${BUILD_TAG}/${BUILD_CXX}"
+fi
 
 case "$STATUS" in
 success)