From 4f706e0ff93432daf5bde2c0f99821d7d2214463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 24 Oct 2016 08:42:43 +0200 Subject: [PATCH] Fix cleanup of test packages. --- travis-ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-ci.sh b/travis-ci.sh index 08cc2ce..095a774 100755 --- a/travis-ci.sh +++ b/travis-ci.sh @@ -21,6 +21,6 @@ fi if [ ${RUN_TEST=1} -eq 1 ]; then for ex in `\ls -1 tests/`; do echo "[INFO] Running test $ex" - (cd tests && dub --compiler=$DC --single $ex && dub clean) + (cd tests && dub --compiler=$DC --single $ex && rm -r .dub test) done fi