Skip to content

Commit

Permalink
Use name string instead of truename
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-lindquist committed Aug 20, 2019
1 parent b082717 commit 06c7146
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions roswell/asdf-register-project.ros
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@ Options
(show-help))
(let ((source-registry (asdf:user-source-registry :direction :output)))
(ensure-directories-exist source-registry)
(format t "source-reg exists: ~S~%" (probe-file source-registry))
(format t "reg parent exists: ~S~%" (probe-file (uiop:pathname-parent-directory-pathname source-registry)))
(probe-file (uiop:pathname-parent-directory-pathname source-registry))
(with-open-file (stream source-registry
:direction :output
:if-exists :append
:if-does-not-exist :create)
(format stream "(:tree ~S)" (truename (ci-utils:build-dir))))))
(format stream "(:tree ~S)" (namestring (truename (ci-utils:build-dir)))))))

0 comments on commit 06c7146

Please sign in to comment.