From f7cf397723ebc3efb182a32d71d58331c626a3c9 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Sun, 25 Jun 2017 18:27:41 +0200 Subject: [PATCH] Docker compose / rm does not like wildcards --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 678f8eb5..8742084d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ test_api: script: - docker-compose -f api/test.yml run test after_script: - - docker-compose -f api/test.yml run test rm -rf funkwhale_api/media/* + - docker-compose -f api/test.yml run test rm -rf funkwhale_api/media/ tags: - dind -- GitLab