diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-06-04 10:22:11 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-06-22 11:55:20 -0400 |
| commit | 03343d3d294457caa673135e738e7d1d3101e94c (patch) | |
| tree | 959c1831b6c03e0182e5715f38cc0899ed00e2f4 /src/lib | |
| parent | 3092f60b8cd8b5be17a33b5c5e9da9998f97a6fa (diff) | |
| download | stasis-03343d3d294457caa673135e738e7d1d3101e94c.tar.gz | |
Add CondaCapabilities as argument to conda_setup_headless
Diffstat (limited to 'src/lib')
| -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 8548658..17aea02 100644 --- a/src/lib/core/conda.c +++ b/src/lib/core/conda.c @@ -561,7 +561,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 66d5b57..f0ba1e4 100644 --- a/src/lib/core/include/conda.h +++ b/src/lib/core/include/conda.h @@ -156,7 +156,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 |
