diff --git a/README.md b/README.md index 6f46476b..18d1afe7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ Generating docs locally can be accomplished by running make gendocs from within ## Installation ```bash -curl -s https://raw.githubusercontent.com/flyteorg/flytectl/master/install.sh | bash +$ brew tap flyteorg/homebrew-tap +$ brew install flytectl ``` ## Contributing diff --git a/cmd/version/version.go b/cmd/version/version.go index 6a24addf..57c7ddac 100644 --- a/cmd/version/version.go +++ b/cmd/version/version.go @@ -7,7 +7,7 @@ import ( cmdCore "github.com/flyteorg/flytectl/cmd/core" "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - adminversion "github.com/flyteorg/flytestdlib/version" + stdlibversion "github.com/flyteorg/flytestdlib/version" "github.com/spf13/cobra" ) @@ -52,9 +52,9 @@ func getVersion(ctx context.Context, args []string, cmdCtx cmdCore.CommandContex // Print Flytectl if err := printVersion(versionOutput{ - Build: adminversion.Build, - BuildTime: adminversion.BuildTime, - Version: adminversion.Version, + Build: stdlibversion.Build, + BuildTime: stdlibversion.BuildTime, + Version: stdlibversion.Version, App: "flytectl", }); err != nil { return err