diff options
-rw-r--r-- | tissue/git.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tissue/git.scm b/tissue/git.scm index 653f8ae..b67d65c 100644 --- a/tissue/git.scm +++ b/tissue/git.scm @@ -220,7 +220,9 @@ checkout when PROC returns or exits non-locally." (call-with-temporary-directory (lambda (temporary-checkout) (clone repository temporary-checkout) - (proc temporary-checkout)))) + (proc temporary-checkout)) + ;; The system-dependent temporary directory + (dirname (tmpnam)))) (define (call-with-temporary-checkouts repositories proc) "Call PROC with temporary checkouts of REPOSITORIES, and delete the |