Hello, Leo Famulari skribis: > However, with the patch there is an error in the test 'gexp->script > #:module-path': > > ------ > actual-value: #f > actual-error: > + (system-error > + "lstat" > + "~A: ~S" > + ("No such file or directory" > + "/tmp/guix-directory.6CrC8B/guix/base32.scm") > + (2)) > result: FAIL > ------ Funny. That test turned out to work thanks to the brokenness of ‘call-with-temporary-directory’: since it’s a monadic return, the actual code was executed after we’d left the ‘call-with-temporary-directory’ extent, yet it expected to be able to access files from that temporary directory. This change fixes it: