|
@@ -311,15 +311,20 @@ let run ~version ~build_info () =
|
|
(* Parsing with subcommands *)
|
|
(* Parsing with subcommands *)
|
|
let parse_sub () =
|
|
let parse_sub () =
|
|
group
|
|
group
|
|
- ~summary:"OcLaunch program is published under CeCILL licence.\n \
|
|
|
|
|
|
+ ~summary:"OcLaunch program is published under CeCILL licence.\n\
|
|
You may run the program with 'licence' command or see \
|
|
You may run the program with 'licence' command or see \
|
|
http://cecill.info/licences/Licence_CeCILL_V2.1-en.html \
|
|
http://cecill.info/licences/Licence_CeCILL_V2.1-en.html \
|
|
(http://lnch.ml/cecill) for details. More here: \
|
|
(http://lnch.ml/cecill) for details. More here: \
|
|
http://oclaunch.eu.org/floss-under-cecill (http://lnch.ml/l)."
|
|
http://oclaunch.eu.org/floss-under-cecill (http://lnch.ml/l)."
|
|
~readme:(fun () ->
|
|
~readme:(fun () ->
|
|
- "Use 'help' subcommand to get help (it works both \
|
|
|
|
- after the name of the software and with another subcommand). For \
|
|
|
|
- further help, see http://oclaunch.eu.org.")
|
|
|
|
|
|
+ String.concat [
|
|
|
|
+ "Use 'help' subcommand to get help (it works both \
|
|
|
|
+ after the name of the software and with another subcommand). For \
|
|
|
|
+ further help, see http://oclaunch.eu.org." ;
|
|
|
|
+ "\n" ;
|
|
|
|
+ File_com.welcome_msg
|
|
|
|
+ ]
|
|
|
|
+ )
|
|
~preserve_subcommand_order:()
|
|
~preserve_subcommand_order:()
|
|
[ ("run", default) ; ("licence", licence) ; ("add", add) ; ("edit", edit)
|
|
[ ("run", default) ; ("licence", licence) ; ("add", add) ; ("edit", edit)
|
|
; ("list", list) ; ("cleanup", clean) ; ("delete", delete)
|
|
; ("list", list) ; ("cleanup", clean) ; ("delete", delete)
|