binary hotfix

This commit is contained in:
Galfour 2019-06-06 09:30:29 +00:00
parent e62178cee6
commit 019d4311ab

View File

@ -25,7 +25,7 @@ let entry_point =
let docv = "ENTRY_POINT" in let docv = "ENTRY_POINT" in
let doc = "$(docv) is entry-point that will be compiled." in let doc = "$(docv) is entry-point that will be compiled." in
info ~docv ~doc [] in info ~docv ~doc [] in
value @@ pos 1 string "main" info required @@ pos 1 (some string) (Some "main") info
let expression = let expression =
let open Arg in let open Arg in
@ -39,7 +39,7 @@ let syntax =
let info = let info =
let docv = "SYNTAX" in let docv = "SYNTAX" in
let doc = "$(docv) is the syntax that will be used. Currently supported syntaxes are \"pascaligo\" and \"cameligo\". \"pascaligo\" is the default." in let doc = "$(docv) is the syntax that will be used. Currently supported syntaxes are \"pascaligo\" and \"cameligo\". \"pascaligo\" is the default." in
info ~docv ~doc [] in info ~docv ~doc ["syntax" ; "s"] in
value @@ opt string "pascaligo" info value @@ opt string "pascaligo" info
let compile_file = let compile_file =