Merge pull request #10166 from hashicorp/fix_master

fix fixer deprecated options conflict
This commit is contained in:
Wilken Rivera 2020-10-23 17:09:16 -04:00 committed by GitHub
commit 791a69e78f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ import (
// FixerProxmoxType updates proxmox builder types to proxmox-iso
type FixerProxmoxType struct{}
func (FixerProxmoxType) DeprecatedOptions() []string {
return []string{}
func (FixerProxmoxType) DeprecatedOptions() map[string][]string {
return map[string][]string{}
}
func (FixerProxmoxType) Fix(input map[string]interface{}) (map[string]interface{}, error) {