Skip to content

Commit

Permalink
Fix help after change in display-build-manifest (#1264)
Browse files Browse the repository at this point in the history
display-build-manifest now always want a port, and to get the string one
must use build-manifest-string. So use display-build-manifest then
newline.
  • Loading branch information
fare authored Aug 13, 2024
1 parent 8ba278d commit b29099a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/std/cli/multicall.ss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
(define-entry-point (help (command #f))
(help: "Print help about available commands"
getopt: [(optional-argument 'command help: "subcommand for which to display help")])
(displayln (display-build-manifest (build-manifest/head)))
(display-build-manifest (build-manifest/head))
(newline)
(def gopt (apply getopt (entry-points-getopt-spec)))
(def program (current-program-string (cdr (current-program))))
(if command
Expand Down

0 comments on commit b29099a

Please sign in to comment.