mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 09:42:22 +00:00
cli: rename contract compile
--emitdebug to --debug
It is more intuitive and easier to type.
This commit is contained in:
parent
c71ad6a5db
commit
450263bcae
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ func NewCommands() []cli.Command {
|
|||
Usage: "Print out additional information after a compiling",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "emitdebug",
|
||||
Name: "debug, d",
|
||||
Usage: "Emit debug info in a separate file",
|
||||
},
|
||||
},
|
||||
|
@ -352,7 +352,7 @@ func contractCompile(ctx *cli.Context) error {
|
|||
o := &compiler.Options{
|
||||
Outfile: ctx.String("out"),
|
||||
|
||||
DebugInfo: ctx.String("emitdebug"),
|
||||
DebugInfo: ctx.String("debug"),
|
||||
}
|
||||
|
||||
result, err := compiler.CompileAndSave(src, o)
|
||||
|
|
Loading…
Reference in a new issue