From a0cedb7e5c9619c470907aa1051ac3fe55691237 Mon Sep 17 00:00:00 2001 From: Wes Date: Tue, 12 Mar 2024 08:10:22 -0700 Subject: [PATCH] chore: minor cleanup to cmd descriptions (#1069) --- cmd/ftl/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/ftl/main.go b/cmd/ftl/main.go index e9173663a..892d1feed 100644 --- a/cmd/ftl/main.go +++ b/cmd/ftl/main.go @@ -31,15 +31,15 @@ type CLI struct { Status statusCmd `cmd:"" help:"Show FTL status."` Init initCmd `cmd:"" help:"Initialize a new FTL module."` - Dev devCmd `cmd:"" help:"Watch a directory for FTL modules and hot reload them."` + Dev devCmd `cmd:"" help:"Develop FTL modules. Will start the FTL cluster, build and deploy all modules found in the specified directories, and watch for changes."` PS psCmd `cmd:"" help:"List deployments."` Serve serveCmd `cmd:"" help:"Start the FTL server."` Call callCmd `cmd:"" help:"Call an FTL function."` Update updateCmd `cmd:"" help:"Update a deployment."` Kill killCmd `cmd:"" help:"Kill a deployment."` Schema schemaCmd `cmd:"" help:"FTL schema commands."` - Build buildCmd `cmd:"" help:"Build an FTL module."` - Deploy deployCmd `cmd:"" help:"Create a new deployment."` + Build buildCmd `cmd:"" help:"Build all modules found in the specified directories."` + Deploy deployCmd `cmd:"" help:"Build and deploy all modules found in the specified directories."` Download downloadCmd `cmd:"" help:"Download a deployment."` Secret secretCmd `cmd:"" help:"Manage secrets."` Config configCmd `cmd:"" help:"Manage configuration."`