Last active
December 16, 2015 22:29
-
-
Save joekarma/5507137 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun release-last-updated-date (quicklisp-release) | |
(ppcre:register-groups-bind (year month day) | |
("-(\\d{4})(\\d{2})(\\d{2})(?:-|$)" (ql-dist:prefix quicklisp-release)) | |
(local-time:encode-timestamp 0 0 0 0 (parse-integer day) (parse-integer month) (parse-integer year)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment