From ca6fb164907c3fb530f049864d6a986f85b22cdf Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 12 Feb 2024 23:49:19 -0500 Subject: Implement path_store * Replaces string literal usage in favor of delivery context variables --- include/deliverable.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/deliverable.h b/include/deliverable.h index f97a73c..d0186d7 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -49,9 +49,11 @@ struct Delivery { struct Storage { char *root; ///< Top-level storage area char *tmpdir; ///< Temporary storage area (within root) + char *output_dir; ///< Base path to where all artifacts are stored char *delivery_dir; ///< Delivery artifact output directory char *tools_dir; ///< Tools storage char *mission_dir; ///< Mission data storage + char *package_dir; ///< Base path to where all packages are stored char *conda_install_prefix; ///< Path to install Conda char *conda_artifact_dir; ///< Base path to store compiled conda packages char *conda_staging_dir; ///< Base path to copy compiled conda packages -- cgit