command/remote-config: lowercase the type so that Atlas works, for
example
This commit is contained in:
parent
7bfa5afd00
commit
38b1a727bf
|
@ -45,6 +45,9 @@ func (c *RemoteConfigCommand) Run(args []string) int {
|
|||
return 1
|
||||
}
|
||||
|
||||
// Lowercase the type
|
||||
c.remoteConf.Type = strings.ToLower(c.remoteConf.Type)
|
||||
|
||||
// Set the local state path
|
||||
c.statePath = c.conf.statePath
|
||||
|
||||
|
|
Loading…
Reference in New Issue