diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-02 18:33:27 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-02 18:55:48 -0400 |
commit | 333eb381749e174f049b47d7e60ef05893788144 (patch) | |
tree | e61ef2939b832b6b3347055ed714e605354c8101 /include | |
parent | 4bbc4ef460df2b6c65adaca25f2997a75c45bb87 (diff) | |
download | stasis-333eb381749e174f049b47d7e60ef05893788144.tar.gz |
Reset HOME to point to a temporary directory to prevent contaminating the user account's home directory with build artifacts, caches, and other artifacts
Diffstat (limited to 'include')
-rw-r--r-- | include/deliverable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/deliverable.h b/include/deliverable.h index 5b80930..640fd06 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -48,6 +48,7 @@ struct Delivery { */ struct Storage { char *root; ///< Top-level storage area + char *home; ///< Temporary user account profile 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 |