aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-06-12 13:47:26 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-06-12 13:47:26 -0400
commitbc61df112e5d3c7c0d5e8688040e96ae6ec2aec1 (patch)
treeb374cc9060205cce1176b8530510c9ad1366e1f8 /src
parent3fdd468551b77d2c71d6fb110f16ed847abcddb8 (diff)
downloadstasis-conda-updates.tar.gz
Remove redundant code left behind from developmentconda-updates
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));