diff options
author | Filip Lajszczak <filip@lajszczak.dev> | 2023-11-11 21:19:07 +0000 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-11-11 19:16:54 -0500 |
commit | 544d95417e350d5bf8fa5ab402bec48e152d6228 (patch) | |
tree | 08f8d8d594b5f1e2914fa8c10968d66992d31227 | |
parent | dac164892d549b8e4715518c77503efe0b65b5ba (diff) |
ui: Add publish to list of subcommands.
* haunt/ui.scm: Makes publish subcommand more discoverable by adding it
to the list of subcommands displayed by top level --help
-rw-r--r-- | haunt/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/ui.scm b/haunt/ui.scm index 94ac9b0..7a0d2dd 100644 --- a/haunt/ui.scm +++ b/haunt/ui.scm @@ -57,7 +57,7 @@ haunt-main)) (define commands - '("build" "serve")) + '("build" "publish" "serve")) (define program-name (make-parameter 'haunt)) |