From 3836448cc3cb634008de42accd76e8c5b07e607f Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 6 Aug 2015 11:17:02 +0200 Subject: [PATCH] Fix exitcodes in Makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 079753d..182bdae 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ TRAVIS = false PIP_INSTALL = pip install install-davserver: + set -e; \ if [ ! -d "$(TESTSERVER_BASE)$(DAV_SERVER)/" ]; then \ git clone --depth=1 \ https://github.com/vdirsyncer/$(DAV_SERVER)-testserver.git \ @@ -31,6 +32,7 @@ install-test: install-davserver [ $(TRAVIS) != "true" ] || $(PIP_INSTALL) coverage coveralls test: + set -e; \ if [ "$(TRAVIS)" = "true" ]; then \ coverage run --source=vdirsyncer/ --module pytest; \ coveralls; \