diff options
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 |
