From 923ee5f0db5dc2be828d5df73635eb279c199f02 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Wed, 28 Aug 2024 18:48:16 -0700 Subject: [PATCH] fix: update help description to reference repo --- cmd/versitygw/main.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cmd/versitygw/main.go b/cmd/versitygw/main.go index 237739d5..018573de 100644 --- a/cmd/versitygw/main.go +++ b/cmd/versitygw/main.go @@ -114,10 +114,13 @@ func main() { func initApp() *cli.App { return &cli.App{ - Name: "versitygw", - Usage: "Start S3 gateway service with specified backend storage.", - Description: `The S3 gateway is an S3 protocol translator that allows an S3 client -to access the supported backend storage as if it was a native S3 service.`, + Usage: "Versity S3 Gateway", + Description: `The Versity S3 Gateway is an S3 protocol translator that allows an S3 client +to access the supported backend storage as if it was a native S3 service. +VersityGW is an open-source project licensed under the Apache 2.0 License. The +source code is hosted on GitHub at https://github.com/versity/versitygw, and +documentation can be found in the GitHub wiki.`, + Copyright: "Copyright (c) 2023-2024 Versity Software", Action: func(ctx *cli.Context) error { return ctx.App.Command("help").Run(ctx) },