Skip to content

Commit 4b3993a

Browse files
committed
Resolve project name only when release url is found
Else we're trying to find a project name for NIL and errors. Fixes rudolfochrist#21
1 parent b78460d commit 4b3993a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ql-https.lisp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
(release (find http-url all-releases
6868
:test #'string=
6969
:key #'ql-dist:archive-url)))
70-
(ql-dist:project-name release)))
70+
(when release
71+
(ql-dist:project-name release))))
7172

7273
#+sbcl
7374
(defun md5 (file)

0 commit comments

Comments
 (0)