diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2c75d1524fbe9633d6eef8a0ab61ad2ea4d5e4e0..64f37a7b3d5abf60a71b2f7d074d1c52951e0bf3 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