aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/core/conda.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/core/conda.c b/src/lib/core/conda.c
index b94824e..2f2da19 100644
--- a/src/lib/core/conda.c
+++ b/src/lib/core/conda.c
@@ -558,17 +558,6 @@ int conda_setup_headless(struct CondaCapabilities *cc) {
strlist_append(&globals.conda_packages, "boa");
}
- if (cc->require_boa) {
- if (!boa_requested) {
- SYSWARN("Adding boa to global package list");
- strlist_append(&globals.conda_packages, "boa");
- }
- } else {
- if (boa_requested) {
- SYSWARN("Removing boa from global package list due to incompatible conda version (too new): %s", cc->conda_version);
- strlist_remove(globals.conda_packages, boa_index);
- }
- }
memset(cmd, 0, sizeof(cmd));
safe_strncpy(cmd, "install ", sizeof(cmd));