From fb53bfccaacf0ef84ba834670e0aa3b7e685bd9e Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Fri, 7 Jun 2019 16:06:54 +0200
Subject: [PATCH] when creating a local development environment, remove the
 always_yes option

---
 bob/devtools/scripts/create.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/bob/devtools/scripts/create.py b/bob/devtools/scripts/create.py
index f9e50e66..1c707d26 100644
--- a/bob/devtools/scripts/create.py
+++ b/bob/devtools/scripts/create.py
@@ -141,6 +141,8 @@ def create(name, recipe_dir, python, overwrite, condarc, use_local, config,
 
   conda_config = make_conda_config(config, python, append_file, condarc_options)
   deps = parse_dependencies(recipe_dir, conda_config)
+  # when creating a local development environment, remove the always_yes option
+  del condarc_options["always_yes"]
   status = conda_create(conda, name, overwrite, condarc_options, deps,
       dry_run, use_local)
   echo_normal('Execute on your shell: "conda activate %s"' % name)
-- 
GitLab