Skip to content

Commit a80ddac

Browse files
committed
Drop redundant epilog (subcommand help lists --alias/--deps-file)
1 parent 6ba2121 commit a80ddac

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ Options:
7474
--version
7575
7676
Run "neil <command> --help" for more information on a command.
77-
78-
Most subcommands also accept --alias and --deps-file.
7977
```
8078

8179
### add dep

neil

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,8 +1715,7 @@ Examples:
17151715
:fn (fn [{:keys [opts] :as m}]
17161716
(if (:version opts)
17171717
(neil-version/print-version)
1718-
(print-help m)))
1719-
:epilog "Most subcommands also accept --alias and --deps-file."}])
1718+
(print-help m)))}])
17201719

17211720
(defn -main [& _args]
17221721
(cli/dispatch dispatch-table

src/babashka/neil.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -835,8 +835,7 @@ Examples:
835835
:fn (fn [{:keys [opts] :as m}]
836836
(if (:version opts)
837837
(neil-version/print-version)
838-
(print-help m)))
839-
:epilog "Most subcommands also accept --alias and --deps-file."}])
838+
(print-help m)))}])
840839

841840
(defn -main [& _args]
842841
(cli/dispatch dispatch-table

0 commit comments

Comments
 (0)