From e70bd6f04df7177589791fe99f71625259ef1d60 Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Fri, 1 Oct 2021 17:09:03 +0200
Subject: [PATCH] [ci skip] alway rm -v

---
 bob/devtools/data/gitlab-ci/base-build.yaml     | 4 ++--
 bob/devtools/data/gitlab-ci/docs.yaml           | 4 ++--
 bob/devtools/data/gitlab-ci/noarch.yaml         | 4 ++--
 bob/devtools/data/gitlab-ci/single-package.yaml | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/bob/devtools/data/gitlab-ci/base-build.yaml b/bob/devtools/data/gitlab-ci/base-build.yaml
index d40997b7..9346fffa 100644
--- a/bob/devtools/data/gitlab-ci/base-build.yaml
+++ b/bob/devtools/data/gitlab-ci/base-build.yaml
@@ -33,8 +33,8 @@ build_linux:
   tags:
     - docker
   before_script:
-    - rm -f ~/.condarc
-    - rm -rf ~/.conda
+    - rm -fv ~/.condarc
+    - rm -rfv ~/.conda
   image: quay.io/condaforge/linux-anvil-comp7
   cache:
     key: "linux-cache"
diff --git a/bob/devtools/data/gitlab-ci/docs.yaml b/bob/devtools/data/gitlab-ci/docs.yaml
index 93578235..1a382ff1 100644
--- a/bob/devtools/data/gitlab-ci/docs.yaml
+++ b/bob/devtools/data/gitlab-ci/docs.yaml
@@ -22,8 +22,8 @@ stages:
     - docker
   image: quay.io/condaforge/linux-anvil-comp7
   before_script:
-    - rm -f ~/.condarc
-    - rm -rf ~/.conda
+    - rm -fv ~/.condarc
+    - rm -rfv ~/.conda
     - curl --silent "${BOOTSTRAP}" --output "bootstrap.py"
     - python3 bootstrap.py -vv channel base
     - source ${CONDA_ROOT}/etc/profile.d/conda.sh
diff --git a/bob/devtools/data/gitlab-ci/noarch.yaml b/bob/devtools/data/gitlab-ci/noarch.yaml
index 5978b118..4290461d 100644
--- a/bob/devtools/data/gitlab-ci/noarch.yaml
+++ b/bob/devtools/data/gitlab-ci/noarch.yaml
@@ -21,9 +21,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 bdt
     - source ${CONDA_ROOT}/etc/profile.d/conda.sh
diff --git a/bob/devtools/data/gitlab-ci/single-package.yaml b/bob/devtools/data/gitlab-ci/single-package.yaml
index d85782fe..81ea1b8e 100644
--- a/bob/devtools/data/gitlab-ci/single-package.yaml
+++ b/bob/devtools/data/gitlab-ci/single-package.yaml
@@ -21,9 +21,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 bdt
     - source ${CONDA_ROOT}/etc/profile.d/conda.sh
-- 
GitLab