We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7dbd23 commit f218510Copy full SHA for f218510
main.go
@@ -47,7 +47,7 @@ func main() {
47
},
48
{
49
Name: "build",
50
- Usage: "Compiles your project into an executable",
+ Usage: "Compiles your project into an executable using the Fluent compiler",
51
Aliases: []string{"b"},
52
Flags: []cli.Flag{
53
&cli.IntFlag{
@@ -59,13 +59,13 @@ func main() {
59
60
61
Action: func(_ context.Context, cmd *cli.Command) error {
62
- cli2.BuildCommand(cmd)
+ cli2.BuildCommand(cmd, true)
63
return nil
64
65
66
67
Name: "run",
68
- Usage: "Runs a fluent file",
+ Usage: "Runs a fluent file using the Fluent interpreter",
69
Aliases: []string{"r"},
70
71
&cli.BoolFlag{
0 commit comments