diff options
author | Arun Isaac | 2025-08-26 20:58:37 +0100 |
---|---|---|
committer | Arun Isaac | 2025-08-26 20:59:08 +0100 |
commit | 641f875054aca082ecbe83c99f08793d6a52c845 (patch) | |
tree | a5dbb6011f816f99bde1dd6e04a9012cccc19f02 | |
parent | 673c67e58771047c711b3db08cc6965172a218c1 (diff) | |
download | ravanan-641f875054aca082ecbe83c99f08793d6a52c845.tar.gz ravanan-641f875054aca082ecbe83c99f08793d6a52c845.tar.lz ravanan-641f875054aca082ecbe83c99f08793d6a52c845.zip |
guix: Set HOME for Guix.
-rw-r--r-- | .guix/cwl-conformance.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.guix/cwl-conformance.scm b/.guix/cwl-conformance.scm index aad3b3a..b0eb985 100644 --- a/.guix/cwl-conformance.scm +++ b/.guix/cwl-conformance.scm @@ -33,6 +33,8 @@ (use-modules (guix build utils) (ice-9 match)) + ;; Guix peeks into HOME. + (setenv "HOME" (getcwd)) ;; cwltest writes out output directories to TMPDIR, but does not clean ;; up after. So, we set TMPDIR to our own temporary directory that we ;; can manage easily. See pending issue on cleaning up temporary output |