chore(nix): hide expected failures

This commit is contained in:
Gregor Kleen 2020-04-28 14:33:14 +02:00
parent 57f1ce9265
commit 7b5be17753

View File

@ -27,10 +27,10 @@ let
cleanup() {
set +e -x
type cleanup_postgres && cleanup_postgres
type cleanup_widget_memcached && cleanup_widget_memcached
type cleanup_session_memcached && cleanup_session_memcached
type cleanup_cache_memcached && cleanup_cache_memcached
type cleanup_postgres &>/dev/null && cleanup_postgres
type cleanup_widget_memcached &>/dev/null && cleanup_widget_memcached
type cleanup_session_memcached &>/dev/null && cleanup_session_memcached
type cleanup_cache_memcached &>/dev/null && cleanup_cache_memcached
set +x
}