diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-12-10 01:12:18 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-12-10 01:12:18 -0500 |
commit | 252723ae12eca5f74328c377ac2ec065bc4cde23 (patch) | |
tree | f6877900449298d837c41b0e511108959b104183 | |
parent | d14a81a28cb7ab53e5b85710821067fc92e90d2d (diff) | |
download | stasis-252723ae12eca5f74328c377ac2ec065bc4cde23.tar.gz |
Add conda_fresh_start to globals
* Move conda_install_prefix to globals
* Add Jfrog structure to globals
-rw-r--r-- | include/omc.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/include/omc.h b/include/omc.h index 9d6cee4..9ee31e4 100644 --- a/include/omc.h +++ b/include/omc.h @@ -35,12 +35,23 @@ } struct OMC_GLOBAL { - unsigned char verbose; - unsigned char always_update_base_environment; - unsigned char continue_on_error; + bool verbose; + bool always_update_base_environment; + bool continue_on_error; + bool conda_fresh_start; struct StrList *conda_packages; struct StrList *pip_packages; char *tmpdir; + char *conda_install_prefix; + struct Jfrog { + char *jfrog_artifactory_base_url; + char *jfrog_artifactory_product; + char *cli_major_ver; + char *version; + char *os; + char *arch; + char *remote_filename; + } jfrog; }; #endif //OMC_OMC_H |