From 2d23eec3c5e81ef9abe95ab0cfbf2531e6a2c826 Mon Sep 17 00:00:00 2001 From: Michael Blaschek <michael.blaschek@univie.ac.at> Date: Tue, 18 Jun 2024 08:49:06 +0000 Subject: [PATCH] fixed wget to curl Former-commit-id: ee7e0e75817b897ff3b39362976c0cd88c7847bf --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db2d7643..f89ebdcc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,8 +53,8 @@ setup: stage: test image: harbor.wolke.img.univie.ac.at/flexpart/rockylinux9:latest script: - - mkdir ./tests/testdata - - wget -P ./tests/testdata "https://webdata.wolke.img.univie.ac.at/flexpart/*" + - mkdir ./tests/testdata && cd ./tests/testdata + - curl -O "https://webdata.wolke.img.univie.ac.at/flexpart/*" extends: .download cache: policy: pull-push -- GitLab