diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-13 12:17:29 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-13 12:17:29 -0400 |
commit | eb206c71778ad1f4171c09e328ef962a0ac8c873 (patch) | |
tree | 881b77e5c119a37b33dac9558562220f6c9aaaa5 /include | |
parent | 8ce824ac4b2f526331093a7150e643700efd4d20 (diff) | |
download | stasis-eb206c71778ad1f4171c09e328ef962a0ac8c873.tar.gz |
Change return value of conda_setup_headless() from void to int
* Replace exit() with return;
Diffstat (limited to 'include')
-rw-r--r-- | include/conda.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conda.h b/include/conda.h index cea3f02..d439371 100644 --- a/include/conda.h +++ b/include/conda.h @@ -89,7 +89,7 @@ int conda_activate(const char *root, const char *env_name); /** * Configure the active conda installation for headless operation */ -void conda_setup_headless(); +int conda_setup_headless(); /** * Creates a Conda environment from a YAML config |