Skip to content

Commit

Permalink
Adaptations to CST changes in tools-for-build/release.lisp
Browse files Browse the repository at this point in the history
* tools-for-build/release.lisp (add-release-date): adaptations to CST
  changes
  (add-release): likewise
  • Loading branch information
scymtym committed May 31, 2022
1 parent 513641f commit 7df37fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools-for-build/release.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
(let+ ((file "changes.sexp")
(content (read-file-into-string file))
(cst (with-input-from-string (stream content)
(eclector.concrete-syntax-tree:cst-read stream)))
(eclector.concrete-syntax-tree:read stream)))
(version (cst:second (cst:first cst)))
(date (cst:third (cst:first cst)))
((start . end) (cst:source date))
Expand All @@ -64,7 +64,7 @@
(let+ ((file "changes.sexp")
(content (read-file-into-string file))
(cst (with-input-from-string (stream content)
(eclector.concrete-syntax-tree:cst-read stream)))
(eclector.concrete-syntax-tree:read stream)))
(release (cst:first cst))
((start . &ign) (cst:source release)))
(setf content (format nil "~A~
Expand Down

0 comments on commit 7df37fa

Please sign in to comment.