From d69338e12efd6c02f2b19296564db3222e6d860c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 4 Jun 2026 10:22:11 -0400 Subject: Add CondaCapabilities as argument to conda_setup_headless --- src/lib/core/conda.c | 2 +- src/lib/core/include/conda.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/core/conda.c b/src/lib/core/conda.c index 411f61a..b1be3c9 100644 --- a/src/lib/core/conda.c +++ b/src/lib/core/conda.c @@ -503,7 +503,7 @@ int conda_check_required() { return 0; } -int conda_setup_headless() { +int conda_setup_headless(struct CondaCapabilities *cc) { if (globals.verbose) { conda_exec("config --system --set quiet false"); } else { diff --git a/src/lib/core/include/conda.h b/src/lib/core/include/conda.h index 7a0023e..2d96f56 100644 --- a/src/lib/core/include/conda.h +++ b/src/lib/core/include/conda.h @@ -147,7 +147,7 @@ int conda_activate(const char *root, const char *env_name); /** * Configure the active conda installation for headless operation */ -int conda_setup_headless(); +int conda_setup_headless(struct CondaCapabilities *cc); /** * Creates a Conda environment from a YAML config -- cgit