diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-06-12 13:47:26 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-06-22 11:57:04 -0400 |
| commit | 838d2e068624bebc5461e37c1d2e7ee1f6e14c8b (patch) | |
| tree | dd736dc5f620fde3f825ec5080a33271c4c15939 /src/lib | |
| parent | f6ddfbec1a3575c3403a896023c55bd58c8f6dc6 (diff) | |
| download | stasis-838d2e068624bebc5461e37c1d2e7ee1f6e14c8b.tar.gz | |
Remove redundant code left behind from development
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/core/conda.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/core/conda.c b/src/lib/core/conda.c index 5624f59..a95b420 100644 --- a/src/lib/core/conda.c +++ b/src/lib/core/conda.c @@ -616,17 +616,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)); |
