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