From 6066758fe925d6cf0cab15e232229db61e28c5b2 Mon Sep 17 00:00:00 2001 From: aknysh Date: Fri, 1 Nov 2024 23:27:29 -0400 Subject: [PATCH] updates --- internal/exec/help.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/exec/help.go b/internal/exec/help.go index 6ea39c856..3cd0b86a7 100644 --- a/internal/exec/help.go +++ b/internal/exec/help.go @@ -104,10 +104,10 @@ func processHelp( "Usage: atmos terraform workspace -s \n\n" + "For more details refer to https://atmos.tools/cli/commands/terraform/workspace\n") } else { - u.PrintMessage(fmt.Sprintf("'atmos' supports native '%s %s' command with all the options, arguments and flags.\n", componentType, command)) + u.PrintMessage(fmt.Sprintf("'atmos' supports native '%s' commands with all the options, arguments and flags.\n", componentType)) u.PrintMessage("In addition, 'component' and 'stack' are required in order to generate variables for the component in the stack.\n") - u.PrintMessage(fmt.Sprintf("atmos %s %s -s [options]", componentType, command)) - u.PrintMessage(fmt.Sprintf("atmos %s %s --stack [options]", componentType, command)) + u.PrintMessage(fmt.Sprintf("atmos %s -s [options]", componentType)) + u.PrintMessage(fmt.Sprintf("atmos %s --stack [options]", componentType)) } return nil