From 252723ae12eca5f74328c377ac2ec065bc4cde23 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 10 Dec 2023 01:12:18 -0500 Subject: Add conda_fresh_start to globals * Move conda_install_prefix to globals * Add Jfrog structure to globals --- include/omc.h | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'include/omc.h') 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 -- cgit