From 645eff58d18ecfd405d644ee89e900aee9af7013 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Fri, 23 Oct 2020 14:00:12 -0700 Subject: [PATCH] fix fixer deprecated options conflict --- fix/fixer_proxmox_type.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fix/fixer_proxmox_type.go b/fix/fixer_proxmox_type.go index e1faf8bcf..93db4a5e8 100644 --- a/fix/fixer_proxmox_type.go +++ b/fix/fixer_proxmox_type.go @@ -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) {