From a5dd232d7e312f7b5c5455d8e430c46b30c6fb72 Mon Sep 17 00:00:00 2001
From: Tammo Jan Dijkema <dijkema@astron.nl>
Date: Wed, 16 Oct 2019 14:57:39 +0200
Subject: [PATCH] Don't untar existing data

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 18ff5cc5..45727b8d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,7 +18,7 @@ before_script:
   - apt-get update && apt-get install -y nodejs python3-pip
   - python3 -m pip install cwltool cwl-runner
   - cd test_data
-  - tar -xf ${TEST_DATASET_NAME}
+  - tar -kxf ${TEST_DATASET_NAME} 2> /dev/null || true
   - cd $CI_PROJECT_DIR
   - source /opt/bashrc
 
-- 
GitLab