Skip to content

Commit

Permalink
fix error for clisp_head.
Browse files Browse the repository at this point in the history
  • Loading branch information
snmsts committed Jan 29, 2022
1 parent 1803ea7 commit 8410412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web.ros
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ exec ros -Q -- $0 "$@"

(defun modify-tsv (tsv release)
(loop with tag-name = (release-tag_name release)
with comp = (lambda (x) (ignore-errors (aref (nth-value 1 (ppcre:scan-to-strings "sbcl-[^-]*-([^/]*)$" x)) 0)))
with comp = (lambda (x) (ignore-errors (aref (nth-value 1 (ppcre:scan-to-strings "[a-z]*-[^-]*-([^/]*)$" x)) 0)))
for uri in (remove-if-not (lambda (x) (ppcre:scan "binary" x))
(release-uris release))
for found = (find uri tsv :test #'(lambda (x y)
Expand Down

0 comments on commit 8410412

Please sign in to comment.