command/cliconfig: Remove command dependency

This was a leftover from the migration of these types from the main
package, but we don't actually need or want this here because this
particular detail is still handled by the main package, and because the
cliconfig package must not depend on the command package in order to avoid
an import cycle.
This commit is contained in:
Martin Atkins 2019-08-08 17:07:27 -07:00
parent 1e2da4f776
commit 8272d3b101
1 changed files with 0 additions and 5 deletions

View File

@ -17,7 +17,6 @@ import (
"github.com/hashicorp/hcl"
"github.com/hashicorp/terraform/command"
"github.com/hashicorp/terraform/svchost"
"github.com/hashicorp/terraform/tfdiags"
)
@ -62,10 +61,6 @@ type ConfigCredentialsHelper struct {
// can be overridden by user configurations.
var BuiltinConfig Config
// PluginOverrides are paths that override discovered plugins, set from
// the config file.
var PluginOverrides command.PluginOverrides
// ConfigFile returns the default path to the configuration file.
//
// On Unix-like systems this is the ".terraformrc" file in the home directory.