Merge pull request #33433 from chaosaffe/fix-getcommand-helptext

This commit is contained in:
Craig Wright 2023-07-14 10:12:10 -07:00 committed by GitHub
commit 8f5064e6b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@ func (c *GetCommand) Run(args []string) int {
func (c *GetCommand) Help() string {
helpText := `
Usage: terraform [global options] get [options] PATH
Usage: terraform [global options] get [options]
Downloads and installs modules needed for the configuration given by
PATH.
Downloads and installs modules needed for the configuration in the
current working directory.
This recursively downloads all modules needed, such as modules
imported by modules imported by the root and so on. If a module is

View File

@ -10,7 +10,7 @@ The `terraform get` command is used to download and update
## Usage
Usage: `terraform get [options] PATH`
Usage: `terraform get [options]`
The modules are downloaded into a `.terraform` subdirectory of the current
working directory. Don't commit this directory to your version control