Skip to content

Commit

Permalink
Merge pull request #55 from keram/list-modules-msg
Browse files Browse the repository at this point in the history
Add full command name `kit/sync-modules to list-modules
  • Loading branch information
markokocic committed Jul 30, 2022
2 parents 7ebcc80 + 70946fd commit ed1d9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/kit-generator/src/kit/generator/modules.clj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
(defn list-modules [ctx]
(let [modules (-> ctx :modules :modules)]
(if (empty? modules)
(println "No modules installed, maybe run `sync-modules`")
(println "No modules installed, maybe run `(kit/sync-modules)`")
(doseq [[id {:keys [doc]}] modules]
(println id "-" doc)))))

Expand Down

1 comment on commit ed1d9d6

@markokocic
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. Thanks.

Please sign in to comment.