Skip to content

Commit

Permalink
fixup! Output BUILD-PATHNAME
Browse files Browse the repository at this point in the history
  • Loading branch information
foretspaisibles committed Oct 1, 2023
1 parent 500b3f7 commit 22eadeb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions action.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,13 @@
(unless pathname
(error "Build system ~A does not define a BUILD-PATHNAME." system)))
(finalize-pathname ()
(if (uiop:os-windows-p)
(concatenate 'string pathname ".exe")
pathname)))
(let ((program-pathname
(if (uiop:os-windows-p)
(concatenate 'string pathname ".exe")
pathname)))
(merge-pathnames
program-pathname
(asdf:system-source-directory system)))))
(ensure-build-pathname-is-set)
(finalize-pathname))))

Expand Down

0 comments on commit 22eadeb

Please sign in to comment.