From a1cddec6b469710a3a0340fb7ff1f70d57aaedc8 Mon Sep 17 00:00:00 2001 From: ozpool Date: Thu, 14 May 2026 12:52:53 +0530 Subject: [PATCH] chore: fix typos arsguments and overidden - GNUmakefile: 'arsguments' -> 'arguments' in the comment that documents CL_LOOPINSTALL_OUTPUT_DIR-driven loopinstall args. - core/cmd/app.go: 'overidden' -> 'overridden' in the comment that explains why the default stdout logger is replaced for server commands. Comment-only; no behavior change. --- GNUmakefile | 2 +- core/cmd/app.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 23e0f61fb1e..8c86025c71f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -12,7 +12,7 @@ CL_INSTALL_TESTING_PLUGINS ?= false CL_IS_PROD_BUILD ?= true # Output directory for loopinstall plugin manifests (set by caller) CL_LOOPINSTALL_OUTPUT_DIR ?= -# Conditionally define arsguments for loopinstall based on CL_LOOPINSTALL_OUTPUT_DIR +# Conditionally define arguments for loopinstall based on CL_LOOPINSTALL_OUTPUT_DIR LOOPINSTALL_PUBLIC_ARGS := $(if $(strip $(CL_LOOPINSTALL_OUTPUT_DIR)),--output-installation-artifacts $(CL_LOOPINSTALL_OUTPUT_DIR)/public.json) LOOPINSTALL_PRIVATE_ARGS := $(if $(strip $(CL_LOOPINSTALL_OUTPUT_DIR)),--output-installation-artifacts $(CL_LOOPINSTALL_OUTPUT_DIR)/private.json) LOOPINSTALL_TESTING_ARGS := $(if $(strip $(CL_LOOPINSTALL_OUTPUT_DIR)),--output-installation-artifacts $(CL_LOOPINSTALL_OUTPUT_DIR)/testing.json) diff --git a/core/cmd/app.go b/core/cmd/app.go index b8d8776fbe9..c30568c8e90 100644 --- a/core/cmd/app.go +++ b/core/cmd/app.go @@ -76,7 +76,7 @@ func NewApp(s *Shell) *cli.App { s.secretsFileIsSet = c.IsSet("secrets") // Default to using a stdout logger only. - // This is overidden for server commands which may start a rotating + // This is overridden for server commands which may start a rotating // logger instead. lggr, closeFn := logger.NewLogger()