diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-06-04 10:22:11 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-06-04 10:22:11 -0400 |
| commit | d69338e12efd6c02f2b19296564db3222e6d860c (patch) | |
| tree | 6fb91d5969b055971d4ba40639a66704932cdbab /src | |
| parent | e3881658fc7cd4b9e95c91fe0b41e75f994c5fe9 (diff) | |
| download | stasis-d69338e12efd6c02f2b19296564db3222e6d860c.tar.gz | |
Add CondaCapabilities as argument to conda_setup_headless
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/core/conda.c | 2 | ||||
| -rw-r--r-- | src/lib/core/include/conda.h | 2 |
2 files changed, 2 insertions, 2 deletions
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 |
