From 800ccbf2706a141863b8aa7655e02f2ac7c57258 Mon Sep 17 00:00:00 2001 From: aknysh Date: Sat, 2 Nov 2024 10:42:18 -0400 Subject: [PATCH] Revert "updates" This reverts commit 16b18dbc4bb7355b07681c011ecbcfec762fbe8d. --- internal/exec/help.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/internal/exec/help.go b/internal/exec/help.go index e28c8a98c..3cd0b86a7 100644 --- a/internal/exec/help.go +++ b/internal/exec/help.go @@ -15,7 +15,7 @@ func processHelp( command string, ) error { if len(command) == 0 { - u.PrintMessage(fmt.Sprintf("Atmos supports all native '%s' commands.\n", componentType)) + u.PrintMessage(fmt.Sprintf("'atmos' supports all native '%s' commands.\n", componentType)) u.PrintMessage("In addition, the 'component' argument and 'stack' flag are required to generate the variables and backend config for the component in the stack.\n") u.PrintMessage(fmt.Sprintf("atmos %s -s [options]", componentType)) u.PrintMessage(fmt.Sprintf("atmos %s --stack [options]", componentType)) @@ -104,11 +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("\nAtmos supports native '%s' commands with all the options, arguments and flags.\n", componentType)) + 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 [options]", componentType)) u.PrintMessage(fmt.Sprintf("atmos %s --stack [options]", componentType)) - u.PrintMessage(fmt.Sprintf("\nFor more details, execute '%s --help'\n", componentType)) } return nil