From 8da66131e12766cfceed62b5ba9829a9bc549a5a Mon Sep 17 00:00:00 2001
From: jaste111 <jan.steimann@hhu.de>
Date: Mon, 28 Jun 2021 10:58:54 +0200
Subject: [PATCH] Add ./ to mc commands

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2c75d15..64f37a7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,15 +3,15 @@ image: "python:3.7"
 before_script:
   - wget https://dl.min.io/client/mc/release/linux-amd64/mc
   - chmod +x mc
-  - mc alias set S3Uni $MINIO_HOST $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
+  - ./mc alias set S3Uni $MINIO_HOST $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
 
 python_run:
   script:
     - pip install flair
     - pip install torch
     - pip install pandas
-    - mc cp S3Uni/steimann/CommentsApril2017.csv .
+    - ./mc cp S3Uni/steimann/CommentsApril2017.csv .
     - python3 ComputeCommentEmbeddings.py
-    - mc cp embedded_comments.pt S3Uni/steimann/
+    - ./mc cp embedded_comments.pt S3Uni/steimann/
   tags:
     - "ht"
\ No newline at end of file
-- 
GitLab