Skip to content

Commit

Permalink
Fix for being compatible with the latest Shelly.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Nov 24, 2014
1 parent 7f4c3ca commit 6b47cd7
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions updater/model/system.lisp
Expand Up @@ -28,15 +28,14 @@
(*error-output* (make-broadcast-stream))
(system (with-retrying 3 (asdf:find-system system-name nil))))
(when system
(prin1-to-string
(list
:author (emit-quote (asdf:system-author system))
:maintainer (emit-quote (asdf:system-maintainer system))
:version (slot-value system 'asdf:version)
:description (safety-princ-to-string (asdf:system-description system))
:long-description (safety-princ-to-string (asdf:system-long-description system))
:homepage (asdf:system-homepage system)
:license (asdf:system-license system)))))))
(list
:author (emit-quote (asdf:system-author system))
:maintainer (emit-quote (asdf:system-maintainer system))
:version (slot-value system 'asdf:version)
:description (safety-princ-to-string (asdf:system-description system))
:long-description (safety-princ-to-string (asdf:system-long-description system))
:homepage (asdf:system-homepage system)
:license (asdf:system-license system))))))

@export
(defun system-info-in-process (system-name)
Expand Down

0 comments on commit 6b47cd7

Please sign in to comment.