From 8a6624af81edcde8e0f063e33145674ed8faed02 Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Fri, 1 Oct 2021 16:16:16 +0200
Subject: [PATCH] [nightlies][ci][skip ci] make the rm command verbose

---
 bob/devtools/data/gitlab-ci/nightlies.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bob/devtools/data/gitlab-ci/nightlies.yaml b/bob/devtools/data/gitlab-ci/nightlies.yaml
index 354ffda5..54fda8dc 100644
--- a/bob/devtools/data/gitlab-ci/nightlies.yaml
+++ b/bob/devtools/data/gitlab-ci/nightlies.yaml
@@ -19,9 +19,9 @@ stages:
 # All stages are prepared the same, with a base set of commands
 .bootstrap:
   before_script:
-    - "[ -r ~/.condarc ] && rm -f ~/.condarc"
+    - "[ -r ~/.condarc ] && rm -fv ~/.condarc"
     # remove ~/.conda if it exists unless it's a mac machine
-    - "[ -d ~/.conda ] && [ ! -d /Applications ] && rm -rf ~/.conda"
+    - "[ -d ~/.conda ] && [ ! -d /Applications ] && rm -rfv ~/.conda"
     - curl --silent "${BOOTSTRAP}" --output "bootstrap.py"
     - python3 bootstrap.py -vv channel base
     - source ${CONDA_ROOT}/etc/profile.d/conda.sh
-- 
GitLab