Skip to content

Commit f218510

Browse files
committed
Update command usage descriptions to specify Fluent compiler and interpreter
1 parent f7dbd23 commit f218510

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func main() {
4747
},
4848
{
4949
Name: "build",
50-
Usage: "Compiles your project into an executable",
50+
Usage: "Compiles your project into an executable using the Fluent compiler",
5151
Aliases: []string{"b"},
5252
Flags: []cli.Flag{
5353
&cli.IntFlag{
@@ -59,13 +59,13 @@ func main() {
5959
},
6060
},
6161
Action: func(_ context.Context, cmd *cli.Command) error {
62-
cli2.BuildCommand(cmd)
62+
cli2.BuildCommand(cmd, true)
6363
return nil
6464
},
6565
},
6666
{
6767
Name: "run",
68-
Usage: "Runs a fluent file",
68+
Usage: "Runs a fluent file using the Fluent interpreter",
6969
Aliases: []string{"r"},
7070
Flags: []cli.Flag{
7171
&cli.BoolFlag{

0 commit comments

Comments
 (0)