From 8cd4fc8169bf0b9799e7812d5aceeee2418bc972 Mon Sep 17 00:00:00 2001 From: Ben Moskovitz Date: Mon, 9 Oct 2023 14:07:05 +1100 Subject: [PATCH] Rename util -> tool --- clicommand/commands.go | 4 ++-- clicommand/{util_keygen.go => tool_keygen.go} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename clicommand/{util_keygen.go => tool_keygen.go} (100%) diff --git a/clicommand/commands.go b/clicommand/commands.go index d34a3b5450..378917ac24 100644 --- a/clicommand/commands.go +++ b/clicommand/commands.go @@ -78,8 +78,8 @@ var BuildkiteAgentCommands = []cli.Command{ }, BootstrapCommand, { - Name: "util", - Usage: "Utility commands, intended for users and operators of the agent to run directly", + Name: "tool", + Usage: "Utility commands, intended for users and operators of the agent to run directly on their machines, and not as part of a Buildkite job", Subcommands: []cli.Command{ KeygenCommand, }, diff --git a/clicommand/util_keygen.go b/clicommand/tool_keygen.go similarity index 100% rename from clicommand/util_keygen.go rename to clicommand/tool_keygen.go