Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion core/cmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down