1 parent 10362c2 commit cf7cb31Copy full SHA for cf7cb31
1 file changed
content-hash.lisp
@@ -95,8 +95,7 @@ starting storage block in STREAM, and the total file size."
95
(defun content-hash (tarfile)
96
"Return a hash string of TARFILE. The hash is computed by creating
97
the digest of the files in TARFILE in order of their name."
98
- (let ((temp "quicklisp-controller:tmp;tarhash.tar"))
99
- (ensure-directories-exist temp)
+ (uiop:with-temporary-file (:pathname temp)
100
(setf tarfile (gunzip tarfile temp))
101
(unwind-protect
102
(with-open-file (stream tarfile :element-type '(unsigned-byte 8))
0 commit comments