Skip to content

Commit 2650cf0

Browse files
committed
pass string rather than path to uiop
1 parent b36509c commit 2650cf0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ql-https.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#-sbcl
5858
(defun md5 (file)
5959
"Returns md5sum of FILE"
60-
(let* ((output (uiop:run-program (list "md5sum" file) :output :string))
60+
(let* ((output (uiop:run-program (list "md5sum" (namestring file)) :output :string))
6161
(space-pos (position #\Space output)))
6262
(subseq output 0 space-pos)))
6363

0 commit comments

Comments
 (0)