Documentation
¶
Overview ¶
Package tools provides the command to manage the development toolchain.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ToolsCmd = &cobra.Command{ Use: "tools", Short: "Force rebuilds and installs development tools (fixes Nix version mismatch).", RunE: func(cmd *cobra.Command, _ []string) error { presenter := ui.NewPresenter(cmd.OutOrStdout(), cmd.ErrOrStderr()) ctx := cmd.Context() runner := workflow.NewRunner(presenter, globals.AssumeYes) return runner.Run( ctx, "Updating Development Toolchain", &workflow.CheckGoEnvStep{ ExecClient: globals.ExecClient, Presenter: presenter, }, &workflow.ConfigurePathStep{ Presenter: presenter, AssumeYes: globals.AssumeYes, }, &workflow.InstallGoToolsStep{ ExecClient: globals.ExecClient, Presenter: presenter, }, ) }, }
ToolsCmd represents the tools command.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.