Skip to content

Instantly share code, notes, and snippets.

@joekarma
Last active December 16, 2015 22:29
Show Gist options
  • Save joekarma/5507137 to your computer and use it in GitHub Desktop.
Save joekarma/5507137 to your computer and use it in GitHub Desktop.
(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